From c0aa6b814e8f4d2c50d084a74a1908ec0f400aa0 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 19 Dec 2016 14:07:52 +0100 Subject: [PATCH] Fix erroneous goto lable Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/2116) --- ssl/statem/statem_clnt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/statem/statem_clnt.c b/ssl/statem/statem_clnt.c index 9b9d6cd6c7..a80d670cbb 100644 --- a/ssl/statem/statem_clnt.c +++ b/ssl/statem/statem_clnt.c @@ -1331,7 +1331,7 @@ MSG_PROCESS_RETURN tls_process_server_hello(SSL *s, PACKET *pkt) sizeof(sctpauthkey), labelbuffer, sizeof(labelbuffer), NULL, 0, 0) <= 0) - goto err; + goto f_err; BIO_ctrl(SSL_get_wbio(s), BIO_CTRL_DGRAM_SCTP_ADD_AUTH_KEY, -- 2.25.1