mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
coverity 1520505: error handling
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/20132)
This commit is contained in:
parent
6a94535725
commit
00407fbf0b
@ -333,12 +333,12 @@ execute_HDR_generalInfo_push1_items_test(CMP_HDR_TEST_FIXTURE *fixture)
|
||||
if (!TEST_ptr(asn1int))
|
||||
return 0;
|
||||
|
||||
if (!TEST_ptr(val)) {
|
||||
if (!TEST_ptr(val)
|
||||
|| !TEST_true(ASN1_INTEGER_set(asn1int, 88))) {
|
||||
ASN1_INTEGER_free(asn1int);
|
||||
return 0;
|
||||
}
|
||||
|
||||
ASN1_INTEGER_set(asn1int, 88);
|
||||
ASN1_TYPE_set(val, V_ASN1_INTEGER, asn1int);
|
||||
if (!TEST_ptr(itav = OSSL_CMP_ITAV_create(OBJ_txt2obj(oid, 1), val))) {
|
||||
ASN1_TYPE_free(val);
|
||||
|
Loading…
x
Reference in New Issue
Block a user