The branch master has been updated
via 704563f04a8401781b359906c1f88a30e12af69c (commit)
from 1125245997dac232a0c0867b6c858cda4e549c6d (commit)
- Log -----------------------------------------------------------------
commit 704563f04a8401781b359906c1f88a30e12af69c
Author: Ben Laurie <[email protected]>
Date: Thu Aug 6 21:32:58 2015 +0100
Fix uninitalised warning.
Reviewed-by: Rich Salz <[email protected]>
-----------------------------------------------------------------------
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)
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits