summaryrefslogtreecommitdiffstats
path: root/ssl/d1_both.c
diff options
context:
space:
mode:
authorSami Farin <hvtaifwkbgefbaei@gmail.com>2014-06-02 12:24:19 +0100
committerDr. Stephen Henson <steve@openssl.org>2014-06-02 13:53:54 +0100
commit646886682373e76dee233f7b918dec0c83e180fc (patch)
treed34d9e38d66f9a1ff0c55e85f746b7121872db97 /ssl/d1_both.c
parentde8a5b523f38377c8e0d9098ebff880749156db6 (diff)
Typo: set i to -1 before goto.
PR#3302 (cherry picked from commit 9717f01951f976f76dd40a38d9fc7307057fa4c4)
Diffstat (limited to 'ssl/d1_both.c')
-rw-r--r--ssl/d1_both.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/d1_both.c b/ssl/d1_both.c
index d8bcd58df2..2c06fc28f7 100644
--- a/ssl/d1_both.c
+++ b/ssl/d1_both.c
@@ -679,8 +679,8 @@ dtls1_reassemble_fragment(SSL *s, struct hm_header_st* msg_hdr, int *ok)
item = pitem_new(seq64be, frag);
if (item == NULL)
{
- goto err;
i = -1;
+ goto err;
}
pqueue_insert(s->d1->buffered_messages, item);