aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/v3_scts.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/x509v3/v3_scts.c')
-rw-r--r--crypto/x509v3/v3_scts.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/x509v3/v3_scts.c b/crypto/x509v3/v3_scts.c
index 777378cf7e..b5122d249f 100644
--- a/crypto/x509v3/v3_scts.c
+++ b/crypto/x509v3/v3_scts.c
@@ -180,7 +180,7 @@ static STACK_OF(SCT) *d2i_SCT_LIST(STACK_OF(SCT) **a,
listlen -= sctlen;
sct = OPENSSL_malloc(sizeof(*sct));
- if (!sct)
+ if (sct == NULL)
goto err;
if (!sk_SCT_push(sk, sct)) {
OPENSSL_free(sct);
@@ -188,7 +188,7 @@ static STACK_OF(SCT) *d2i_SCT_LIST(STACK_OF(SCT) **a,
}
sct->sct = OPENSSL_malloc(sctlen);
- if (!sct->sct)
+ if (sct->sct == NULL)
goto err;
memcpy(sct->sct, p, sctlen);
sct->sct_len = sctlen;