From ab563839bbe3ddf11336b51c80c7fb09adb04abb Mon Sep 17 00:00:00 2001 From: jsg <> Date: Tue, 15 Apr 2014 11:50:18 +0000 Subject: correct cases of code occuring directly after goto/break/return ok miod@ guenther@ --- src/lib/libssl/d1_both.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/libssl/d1_both.c') diff --git a/src/lib/libssl/d1_both.c b/src/lib/libssl/d1_both.c index 6e51aa7f69..ab6b168410 100644 --- a/src/lib/libssl/d1_both.c +++ b/src/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); -- cgit v1.2.3-55-g6feb