From bea1d1cbd8d272d3ca3f0067c8467e2b416a2ed0 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 (cherry picked from commit 9717f01951f976f76dd40a38d9fc7307057fa4c4) --- 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 445470bb43..01d724211c 100644 --- a/ssl/d1_both.c +++ b/ssl/d1_both.c @@ -668,8 +668,8 @@ dtls1_reassemble_fragment(SSL *s, struct hm_header_st* msg_hdr, int *ok) if (item == NULL) { - goto err; i = -1; + goto err; } pqueue_insert(s->d1->buffered_messages, item); -- 2.25.1