2
0
mirror of https://github.com/openssl/openssl.git synced 2025-03-31 20:10:45 +08:00

test: fix coverity 1470559: resource leak

Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14596)
This commit is contained in:
Pauli 2021-03-18 12:54:28 +10:00
parent 015b221a5f
commit 9b0f76e12f

@ -23,10 +23,14 @@ static int test_load(const char *path, const char *symbol)
#ifdef SD_INIT
SD sd = SD_INIT;
SD_SYM sym;
int ret;
return sd_load(path, &sd, SD_MODULE)
&& (symbol == NULL || sd_sym(sd, symbol, &sym))
&& sd_close(sd);
if (!sd_load(path, &sd, SD_MODULE))
return 0;
ret = symbol == NULL || sd_sym(sd, symbol, &sym);
if (!sd_close(sd))
ret = 0;
return ret;
#else
fprintf(stderr, "No dynamic loader\n");
return 0;