tparam_on_enc_ext(): Remove dead code in cleanup

Fixes Coverity 1548382

Reviewed-by: Hugo Landau <hlandau@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/22606)
This commit is contained in:
Tomas Mraz 2023-11-03 08:57:21 +01:00 committed by Hugo Landau
parent 0e2e4b3e69
commit 3150dbe7cb

View File

@ -1994,12 +1994,8 @@ static int tparam_on_enc_ext(QTEST_FAULT *qtf, QTEST_ENCRYPTED_EXTENSIONS *ee,
rc = 1;
err:
if (have_wpkt) {
if (rc)
WPACKET_finish(&wpkt);
else
WPACKET_cleanup(&wpkt);
}
if (have_wpkt)
WPACKET_cleanup(&wpkt);
BUF_MEM_free(old_bufm);
BUF_MEM_free(new_bufm);
return rc;