[openssl-commits] [openssl] master update

Ben Laurie ben at openssl.org
Thu Aug 6 21:14:29 UTC 2015


The branch master has been updated
       via  704563f04a8401781b359906c1f88a30e12af69c (commit)
      from  1125245997dac232a0c0867b6c858cda4e549c6d (commit)


- Log -----------------------------------------------------------------
commit 704563f04a8401781b359906c1f88a30e12af69c
Author: Ben Laurie <ben at links.org>
Date:   Thu Aug 6 21:32:58 2015 +0100

    Fix uninitalised warning.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

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

Summary of changes:
 test/packettest.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/packettest.c b/test/packettest.c
index 1ddb837..f7f9ec8 100644
--- a/test/packettest.c
+++ b/test/packettest.c
@@ -131,7 +131,7 @@ static int test_PACKET_get_net_2(PACKET *pkt, size_t start)
 
 static int test_PACKET_get_net_3(PACKET *pkt, size_t start)
 {
-    unsigned long i;
+    unsigned long i = 0;
 
     if (       !PACKET_goto_bookmark(pkt, start)
             || !PACKET_get_net_3(pkt, &i)


More information about the openssl-commits mailing list