From: Richard Levitte Date: Sun, 13 Mar 2016 13:54:51 +0000 (+0100) Subject: Change an function macro for ERR match the function it's used in. X-Git-Tag: OpenSSL_1_1_0-pre4~35 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=e7c8cafab8f1e35afc977e30ba7ebbae72d58387 Change an function macro for ERR match the function it's used in. Reviewed-by: Kurt Roeckx --- diff --git a/crypto/ex_data.c b/crypto/ex_data.c index 4af0a9d5b3..3088889ffe 100644 --- a/crypto/ex_data.c +++ b/crypto/ex_data.c @@ -251,7 +251,7 @@ int CRYPTO_get_ex_new_index(int class_index, long argl, void *argp, * "app_data" routines use ex_data index zero. See RT 3710. */ if (ip->meth == NULL || !sk_EX_CALLBACK_push(ip->meth, NULL)) { - CRYPTOerr(CRYPTO_F_GET_AND_LOCK, ERR_R_MALLOC_FAILURE); + CRYPTOerr(CRYPTO_F_CRYPTO_GET_EX_NEW_INDEX, ERR_R_MALLOC_FAILURE); goto err; } }