]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/evp/bio_ok.c
Convert all {NAME}err() in crypto/ to their corresponding ERR_raise() call
[thirdparty/openssl.git] / crypto / evp / bio_ok.c
index b6f85a1b92035ace06a7921cb95a3580ec647c6f..f2d66ab1296a55f27569925780e34efca5e3447b 100644 (file)
@@ -135,7 +135,7 @@ static int ok_new(BIO *bi)
     BIO_OK_CTX *ctx;
 
     if ((ctx = OPENSSL_zalloc(sizeof(*ctx))) == NULL) {
-        EVPerr(EVP_F_OK_NEW, ERR_R_MALLOC_FAILURE);
+        ERR_raise(ERR_LIB_EVP, ERR_R_MALLOC_FAILURE);
         return 0;
     }