From: Sami Farin Date: Mon, 2 Jun 2014 11:24:19 +0000 (+0100) Subject: Typo: set i to -1 before goto. X-Git-Tag: OpenSSL_0_9_8za~9 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bea1d1cbd8d272d3ca3f0067c8467e2b416a2ed0;p=oweals%2Fopenssl.git Typo: set i to -1 before goto. PR#3302 (cherry picked from commit 9717f01951f976f76dd40a38d9fc7307057fa4c4) --- 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);