aboutsummaryrefslogtreecommitdiff
path: root/ssl
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 14:22:07 +0100
commit13b7896022e3b45c229696b6fec086c4c486ec5a (patch)
tree9c7086735bd9226c6b0fdfd6308dda4b435b91bf /ssl
parentde51e830a637862ecd86b1feb848312366072dd1 (diff)
downloadopenssl-13b7896022e3b45c229696b6fec086c4c486ec5a.zip
openssl-13b7896022e3b45c229696b6fec086c4c486ec5a.tar.gz
openssl-13b7896022e3b45c229696b6fec086c4c486ec5a.tar.bz2
Typo: set i to -1 before goto.
PR#3302
Diffstat (limited to 'ssl')
-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 d8bcd58..2c06fc2 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);