CVSROOT: /cvs Module name: src Changes by: [email protected] 2015/07/20 17:15:28
Modified files:
lib/libssl/src/crypto/bio: bss_dgram.c
Log message:
Correct #if/else logic in BIO's dgram_ctrl.
Coverity issue 72741 noticed that ret is being overwritten before use.
The actual issue is that the #if/else logic is guarding the wrong
lines. Besides impacting ret, this also made the case's break logic
wrong because it was in the wrong location.
ok bcook@ beck@
