aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509v3/v3_bitst.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/x509v3/v3_bitst.c')
-rw-r--r--crypto/x509v3/v3_bitst.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/x509v3/v3_bitst.c b/crypto/x509v3/v3_bitst.c
index eb6d0f3654..9072b4228e 100644
--- a/crypto/x509v3/v3_bitst.c
+++ b/crypto/x509v3/v3_bitst.c
@@ -112,7 +112,7 @@ ASN1_BIT_STRING *v2i_ASN1_BIT_STRING(X509V3_EXT_METHOD *method,
ASN1_BIT_STRING *bs;
int i;
BIT_STRING_BITNAME *bnam;
- if (!(bs = ASN1_BIT_STRING_new())) {
+ if ((bs = ASN1_BIT_STRING_new()) == NULL) {
X509V3err(X509V3_F_V2I_ASN1_BIT_STRING, ERR_R_MALLOC_FAILURE);
return NULL;
}