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 14:22:06 +0100
commit1dd26414df794862d5b7df865cca4e2552331c44 (patch)
tree81e992957d3e5fea1d7d4f41cadcd36943a2c665 /ssl/d1_both.c
parent056389eb1cbe6396004de0433a87d39a94e7077c (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 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);