summaryrefslogtreecommitdiffstats
path: root/ssl/d1_both.c
diff options
context:
space:
mode:
authorSami Farin <hvtaifwkbgefbaei@gmail.com>2014-06-02 12:24:19 +0100
committerDr. Stephen Henson <steve@openssl.org>2014-06-02 12:28:50 +0100
commitbea1d1cbd8d272d3ca3f0067c8467e2b416a2ed0 (patch)
tree6b8f11dbc0eb5ded4e187932ad04a3a19c5f0548 /ssl/d1_both.c
parent61e6e80fe5b99aecaeb1bc36f5781a4164747de4 (diff)
Typo: set i to -1 before goto.
PR#3302 (cherry picked from commit 9717f01951f976f76dd40a38d9fc7307057fa4c4)
Diffstat (limited to 'ssl/d1_both.c')
-rw-r--r--ssl/d1_both.c2
1 files changed, 1 insertions, 1 deletions
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);