summaryrefslogtreecommitdiffstats
path: root/crypto/bio
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2015-12-16 23:02:47 -0500
committerRich Salz <rsalz@openssl.org>2015-12-22 09:11:07 -0500
commit4fae386cb0563a0c05c2817a5ccb3c18e6d62d8d (patch)
treebe4d48641c4e87ab56a24df3e4c4f937c9bb2c34 /crypto/bio
parentc99de0533debc8a6ed08b47b414bdea19457eafd (diff)
Cleanup CRYPTO_{push,pop}_info
Rename to OPENSSL_mem_debug_{push,pop}. Remove simple calls; keep only calls used in recursive functions. Ensure we always push, to simplify so that we can always pop Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/b_print.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/crypto/bio/b_print.c b/crypto/bio/b_print.c
index f82b0781cc..e0855a6c39 100644
--- a/crypto/bio/b_print.c
+++ b/crypto/bio/b_print.c
@@ -767,7 +767,6 @@ int BIO_vprintf(BIO *bio, const char *format, va_list args)
int ignored;
dynbuf = NULL;
- CRYPTO_push_info("doapr()");
_dopr(&hugebufp, &dynbuf, &hugebufsize, &retlen, &ignored, format, args);
if (dynbuf) {
ret = BIO_write(bio, dynbuf, (int)retlen);
@@ -775,7 +774,6 @@ int BIO_vprintf(BIO *bio, const char *format, va_list args)
} else {
ret = BIO_write(bio, hugebuf, (int)retlen);
}
- CRYPTO_pop_info();
return (ret);
}