summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2023-01-25 12:06:09 +1100
committerPauli <pauli@openssl.org>2023-01-30 08:34:16 +1100
commit00407fbf0b25d65f5e6d99defdb081432e810449 (patch)
treea2c22308e87ff9dbf64531686d4b54215a54dc57
parent6a9453572533e4a22e6f60fe8f6b7ef0823d9c1f (diff)
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)
-rw-r--r--test/cmp_hdr_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cmp_hdr_test.c b/test/cmp_hdr_test.c
index 9e041db1a0..c4cab22f5f 100644
--- a/test/cmp_hdr_test.c
+++ b/test/cmp_hdr_test.c
@@ -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);