mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
coverity 1462545 Dereference after null check
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11651)
This commit is contained in:
parent
e655ce14d0
commit
dc8908bfe2
@ -230,9 +230,11 @@ static int evp_pkey_cmp_any(const EVP_PKEY *a, const EVP_PKEY *b,
|
||||
* us to compare types using legacy NIDs.
|
||||
*/
|
||||
if ((a->type != EVP_PKEY_NONE
|
||||
&& !EVP_KEYMGMT_is_a(b->keymgmt, OBJ_nid2sn(a->type)))
|
||||
&& (b->keymgmt == NULL
|
||||
|| !EVP_KEYMGMT_is_a(b->keymgmt, OBJ_nid2sn(a->type))))
|
||||
|| (b->type != EVP_PKEY_NONE
|
||||
&& !EVP_KEYMGMT_is_a(a->keymgmt, OBJ_nid2sn(b->type))))
|
||||
&& (a->keymgmt == NULL
|
||||
|| !EVP_KEYMGMT_is_a(a->keymgmt, OBJ_nid2sn(b->type)))))
|
||||
return -1; /* not the same key type */
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user