diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-04-15 11:50:19 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2014-04-15 11:50:19 +0000 |
commit | 8d32adfc35a48c0e0d53367f182f5db6e4af484d (patch) | |
tree | 492da0885ce10aaf8b05ee57a1b8de9064992f1d /lib/libssl | |
parent | fdbb56eaa3c68c6ee128520abbe7e812fadbdc2c (diff) |
correct cases of code occuring directly after goto/break/return
ok miod@ guenther@
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/d1_both.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/d1_both.c b/lib/libssl/d1_both.c index 6e51aa7f699..ab6b1684107 100644 --- a/lib/libssl/d1_both.c +++ b/lib/libssl/d1_both.c @@ -647,8 +647,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); |