From: Daniel Stenberg Date: Thu, 8 Aug 2019 12:51:01 +0000 (+0200) Subject: cleanup: s/curl_debug/curl_dbg_debug in comments and docs X-Git-Tag: curl-7_66_0~121 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6ee9e4bd47a919bd8567958bfcca183569747a96;p=thirdparty%2Fcurl.git cleanup: s/curl_debug/curl_dbg_debug in comments and docs Leftovers from the function rename back in 76b63489495 Reported-by: Gisle Vanem Bug: https://github.com/curl/curl/commit/f3e0f071b14fcb46a453f69bdf4e062bcaacf362#com mitcomment-34601751 Closes #4203 --- diff --git a/docs/INTERNALS.md b/docs/INTERNALS.md index cd004e8f46..9ae7228982 100644 --- a/docs/INTERNALS.md +++ b/docs/INTERNALS.md @@ -773,7 +773,7 @@ Track Down Memory Leaks Add a line in your application code: - `curl_memdebug("dump");` + `curl_dbg_memdebug("dump");` This will make the malloc debug system output a full trace of all resource using functions to the given file name. Make sure you rebuild your program diff --git a/src/tool_main.c b/src/tool_main.c index d41e965364..4803adbb34 100644 --- a/src/tool_main.c +++ b/src/tool_main.c @@ -113,9 +113,9 @@ static void memory_tracking_init(void) strcpy(fname, env); curl_free(env); curl_dbg_memdebug(fname); - /* this weird stuff here is to make curl_free() get called - before curl_memdebug() as otherwise memory tracking will - log a free() without an alloc! */ + /* this weird stuff here is to make curl_free() get called before + curl_gdb_memdebug() as otherwise memory tracking will log a free() + without an alloc! */ } /* if CURL_MEMLIMIT is set, this enables fail-on-alloc-number-N feature */ env = curlx_getenv("CURL_MEMLIMIT"); diff --git a/tests/libtest/first.c b/tests/libtest/first.c index d687bf2766..2731ef8db2 100644 --- a/tests/libtest/first.c +++ b/tests/libtest/first.c @@ -97,9 +97,9 @@ static void memory_tracking_init(void) strcpy(fname, env); curl_free(env); curl_dbg_memdebug(fname); - /* this weird stuff here is to make curl_free() get called - before curl_memdebug() as otherwise memory tracking will - log a free() without an alloc! */ + /* this weird stuff here is to make curl_free() get called before + curl_dbg_memdebug() as otherwise memory tracking will log a free() + without an alloc! */ } /* if CURL_MEMLIMIT is set, this enables fail-on-alloc-number-N feature */ env = curl_getenv("CURL_MEMLIMIT");