Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@chromium.org>2014-06-20 23:00:00 +0400
committerAdam Langley <agl@chromium.org>2014-06-21 00:17:41 +0400
commitf10a63b050f353aea217cbc5da6c26b51d0bc2c0 (patch)
treef5db160177a2d55a171684487f91455d76ad03de /ssl/d1_both.c
parentd74d7d030ca9a4127eb2b26f1cf79fd851fb75c4 (diff)
Typo: set i to -1 before goto.
PR#3302 (Imported from upstream's 646886682373e76dee233f7b918dec0c83e180fc)
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 ad829e41..fc7fa9f1 100644
--- a/ssl/d1_both.c
+++ b/ssl/d1_both.c
@@ -682,8 +682,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);