[openssl-commits] [openssl] master update

Ben Laurie ben at openssl.org
Sun Dec 13 12:45:02 UTC 2015


The branch master has been updated
       via  4eacfadedc790244017d88957cbba0f8626c2dbd (commit)
      from  14e8e4d3e6257495bac353217522b0a86ccdea5d (commit)


- Log -----------------------------------------------------------------
commit 4eacfadedc790244017d88957cbba0f8626c2dbd
Author: Ben Laurie <ben at links.org>
Date:   Sun Dec 13 09:34:36 2015 +0000

    Fix (incorrect) uninitialised variable warning.
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 crypto/bio/bss_dgram.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/crypto/bio/bss_dgram.c b/crypto/bio/bss_dgram.c
index 0975856..5e934ce 100644
--- a/crypto/bio/bss_dgram.c
+++ b/crypto/bio/bss_dgram.c
@@ -1762,7 +1762,8 @@ int BIO_dgram_sctp_notification_cb(BIO *b,
 int BIO_dgram_sctp_wait_for_dry(BIO *b)
 {
     int is_dry = 0;
-    int n, sockflags, ret;
+    int sockflags = 0;
+    int n, ret;
     union sctp_notification snp;
     struct msghdr msg;
     struct iovec iov;


More information about the openssl-commits mailing list