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_1h~11 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=1dd26414df794862d5b7df865cca4e2552331c44 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 2e8cf681ed..1bb2e4d1a1 100644 --- a/ssl/d1_both.c +++ b/ssl/d1_both.c @@ -674,8 +674,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);