Continue standardising malloc style for libcrypto
[openssl.git] / crypto / rsa / rsa_crpt.c
index 3c4fd67714567a8c76fdb9dfc9af2160612b2967..4df1662320b70f8dc6b95c420f92307ac3aa5158 100644 (file)
@@ -199,7 +199,7 @@ BN_BLINDING *RSA_setup_blinding(RSA *rsa, BN_CTX *in_ctx)
     if (!(rsa->flags & RSA_FLAG_NO_CONSTTIME)) {
         /* Set BN_FLG_CONSTTIME flag */
         local_n = n = BN_new();
-        if (!local_n) {
+        if (local_n == NULL) {
             RSAerr(RSA_F_RSA_SETUP_BLINDING, ERR_R_MALLOC_FAILURE);
             goto err;
         }