mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
Don't crash if we fail to find a serializer for the current provider
The code was assuming that a serializer would always be found - but this may not be the case. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11271)
This commit is contained in:
parent
4d6d787c49
commit
55ecb812b1
@ -338,12 +338,14 @@ OSSL_SERIALIZER_CTX *OSSL_SERIALIZER_CTX_new_by_EVP_PKEY(const EVP_PKEY *pkey,
|
||||
OSSL_SERIALIZER_free(sel_data.first);
|
||||
OSSL_SERIALIZER_free(sel_data.desired);
|
||||
|
||||
current_props =
|
||||
ossl_parse_property(libctx, OSSL_SERIALIZER_properties(ser));
|
||||
if (ossl_property_match_count(check, current_props) > 0)
|
||||
selection = OSSL_KEYMGMT_SELECT_ALL_PARAMETERS;
|
||||
if (ser != NULL) {
|
||||
current_props =
|
||||
ossl_parse_property(libctx, OSSL_SERIALIZER_properties(ser));
|
||||
if (ossl_property_match_count(check, current_props) > 0)
|
||||
selection = OSSL_KEYMGMT_SELECT_ALL_PARAMETERS;
|
||||
ossl_property_free(current_props);
|
||||
}
|
||||
|
||||
ossl_property_free(current_props);
|
||||
ossl_property_free(check);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user