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_1_0_2-beta2~177 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=646886682373e76dee233f7b918dec0c83e180fc;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 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);