From 13b7896022e3b45c229696b6fec086c4c486ec5a Mon Sep 17 00:00:00 2001 From: Sami Farin Date: Mon, 2 Jun 2014 12:24:19 +0100 Subject: [PATCH] Typo: set i to -1 before goto. PR#3302 --- ssl/d1_both.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- GitLab