Skip to content

Commit

Permalink
Revert "Fix uninitalised warning."
Browse files Browse the repository at this point in the history
This reverts commit 704563f.

Reverting in favour of the next commit which removes the underlying cause
of the warning.

Reviewed-by: Ben Laurie <ben@openssl.org>
  • Loading branch information
mattcaswell committed Aug 6, 2015
1 parent 704563f commit 04fe876
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/packettest.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 0;
unsigned long i;

if ( !PACKET_goto_bookmark(pkt, start)
|| !PACKET_get_net_3(pkt, &i)
Expand Down

0 comments on commit 04fe876

Please sign in to comment.