From: Pauli Date: Fri, 23 Feb 2018 00:55:50 +0000 (+1000) Subject: Remove unreachable statement. X-Git-Tag: OpenSSL_1_1_1-pre2~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d5927344207e0d5d9ee5c862631fdc292e65e7e6;p=openssl Remove unreachable statement. The return at the end isn't reachable. Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/5442) --- diff --git a/ssl/statem/statem_srvr.c b/ssl/statem/statem_srvr.c index 812780a416..d3358196d5 100644 --- a/ssl/statem/statem_srvr.c +++ b/ssl/statem/statem_srvr.c @@ -1150,7 +1150,6 @@ WORK_STATE ossl_statem_server_post_process_message(SSL *s, WORK_STATE wst) case TLS_ST_SR_KEY_EXCH: return tls_post_process_client_key_exchange(s, wst); } - return WORK_FINISHED_CONTINUE; } #ifndef OPENSSL_NO_SRP