projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
de51e83
)
Typo: set i to -1 before goto.
author
Sami Farin
<hvtaifwkbgefbaei@gmail.com>
Mon, 2 Jun 2014 11:24:19 +0000
(12:24 +0100)
committer
Dr. Stephen Henson
<steve@openssl.org>
Mon, 2 Jun 2014 13:22:07 +0000
(14:22 +0100)
PR#3302
ssl/d1_both.c
patch
|
blob
|
history
diff --git
a/ssl/d1_both.c
b/ssl/d1_both.c
index d8bcd58df2b14818b8237bb70c979d62c7df5747..2c06fc28f75206cf786c9b8351392ccd901cb496 100644
(file)
--- 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);