summaryrefslogtreecommitdiffstats
path: root/test/packettest.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-08-06 22:44:29 +0100
committerMatt Caswell <matt@openssl.org>2015-08-06 22:44:29 +0100
commit04fe876b5616793b32e92e965a662bbbed7f71d1 (patch)
tree68e98890b26e80bb3c14760bc57226b63244b868 /test/packettest.c
parent704563f04a8401781b359906c1f88a30e12af69c (diff)
Revert "Fix uninitalised warning."
This reverts commit 704563f04a8401781b359906c1f88a30e12af69c. Reverting in favour of the next commit which removes the underlying cause of the warning. Reviewed-by: Ben Laurie <ben@openssl.org>
Diffstat (limited to 'test/packettest.c')
-rw-r--r--test/packettest.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/packettest.c b/test/packettest.c
index f7f9ec8949..1ddb837149 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 = 0;
+ unsigned long i;
if ( !PACKET_goto_bookmark(pkt, start)
|| !PACKET_get_net_3(pkt, &i)