Remove unreachable statement.

The return at the end isn't reachable.

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5442)
This commit is contained in:
Pauli 2018-02-23 10:55:50 +10:00
parent 8bc0147ff8
commit d592734420

View file

@ -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