summaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/v3_pmaps.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/x509v3/v3_pmaps.c')
-rw-r--r--crypto/x509v3/v3_pmaps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_pmaps.c b/crypto/x509v3/v3_pmaps.c
index a168343b82..14253aae35 100644
--- a/crypto/x509v3/v3_pmaps.c
+++ b/crypto/x509v3/v3_pmaps.c
@@ -119,7 +119,7 @@ static void *v2i_POLICY_MAPPINGS(const X509V3_EXT_METHOD *method,
CONF_VALUE *val;
int i;
- if (!(pmaps = sk_POLICY_MAPPING_new_null())) {
+ if ((pmaps = sk_POLICY_MAPPING_new_null()) == NULL) {
X509V3err(X509V3_F_V2I_POLICY_MAPPINGS, ERR_R_MALLOC_FAILURE);
return NULL;
}