mirror of
https://github.com/openssl/openssl.git
synced 2025-01-30 14:01:55 +08:00
Fix uninitalised warning.
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
1125245997
commit
704563f04a
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user