]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/evp/cmeth_lib.c
Reverting check to correct
[thirdparty/openssl.git] / crypto / evp / cmeth_lib.c
index 4d823f0f5e90254a6f19dec90da397ec82d7a6e0..ba61c525643f1c6cc87d11419dfe7f97160b1f9a 100644 (file)
@@ -38,7 +38,7 @@ EVP_CIPHER *EVP_CIPHER_meth_dup(const EVP_CIPHER *cipher)
         return NULL;
 
     if ((to = EVP_CIPHER_meth_new(cipher->nid, cipher->block_size,
-                                  cipher->key_len)) == NULL) {
+                                  cipher->key_len)) != NULL) {
         CRYPTO_RWLOCK *lock = to->lock;
 
         memcpy(to, cipher, sizeof(*to));