Update slh_dsa_test.c

Fix https://scan5.scan.coverity.com/#/project-view/62507/10222?selectedIssue=1642943

Reviewed-by: Saša Nedvědický <sashan@openssl.org>
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26916)
This commit is contained in:
Andrew Dinh 2025-02-26 21:35:47 +07:00 committed by Neil Horman
parent 442f1958e8
commit 237b761ab4

View File

@ -311,7 +311,7 @@ static EVP_PKEY *do_gen_key(const char *alg,
|| !TEST_int_eq(EVP_PKEY_keygen_init(ctx), 1)
|| !TEST_int_eq(EVP_PKEY_CTX_set_params(ctx, params), 1)
|| !TEST_int_eq(EVP_PKEY_generate(ctx, &pkey), 1))
goto err;
pkey = NULL;
err:
EVP_PKEY_CTX_free(ctx);
return pkey;