mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
Fix CID #1465216 Resource leak in property_fetch
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> (Merged from https://github.com/openssl/openssl/pull/12379)
This commit is contained in:
parent
2f1d0b35c1
commit
84ba665d72
@ -358,9 +358,9 @@ int ossl_method_store_fetch(OSSL_METHOD_STORE *store, int nid,
|
||||
pq = *plp;
|
||||
} else {
|
||||
p2 = ossl_property_merge(pq, *plp);
|
||||
ossl_property_free(pq);
|
||||
if (p2 == NULL)
|
||||
goto fin;
|
||||
ossl_property_free(pq);
|
||||
pq = p2;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user