X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=crypto%2Ferr%2Ferr.c;h=e487e980cb94cf861423de11cf342b5c4f0c729c;hp=236f8ac5463a451065a6b84cdacc8491925e0457;hb=4fae386cb0563a0c05c2817a5ccb3c18e6d62d8d;hpb=c99de0533debc8a6ed08b47b414bdea19457eafd;ds=sidebyside diff --git a/crypto/err/err.c b/crypto/err/err.c index 236f8ac546..e487e980cb 100644 --- a/crypto/err/err.c +++ b/crypto/err/err.c @@ -276,9 +276,7 @@ static LHASH_OF(ERR_STRING_DATA) *get_hash(int create, int lockit) if (lockit) CRYPTO_w_lock(CRYPTO_LOCK_ERR); if (!int_error_hash && create) { - CRYPTO_push_info("get_hash (err.c)"); int_error_hash = lh_ERR_STRING_DATA_new(); - CRYPTO_pop_info(); } if (int_error_hash != NULL) ret = int_error_hash; @@ -323,9 +321,7 @@ static LHASH_OF(ERR_STATE) *int_thread_get(int create, int lockit) if (lockit) CRYPTO_w_lock(CRYPTO_LOCK_ERR); if (!int_thread_hash && create) { - CRYPTO_push_info("int_thread_get (err.c)"); int_thread_hash = lh_ERR_STATE_new(); - CRYPTO_pop_info(); } if (int_thread_hash != NULL) { int_thread_hash_references++;