]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
cleanup: s/curl_debug/curl_dbg_debug in comments and docs
authorDaniel Stenberg <daniel@haxx.se>
Thu, 8 Aug 2019 12:51:01 +0000 (14:51 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 8 Aug 2019 14:01:00 +0000 (16:01 +0200)
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

docs/INTERNALS.md
src/tool_main.c
tests/libtest/first.c

index cd004e8f46b49f5cd8c93cb799d6a574265533bf..9ae72289829d30ba38cba1bf50a6d6e65f9b0d77 100644 (file)
@@ -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
index d41e965364c3de0d047d9a7a1937854a60582c58..4803adbb341dacd72dfbe22aa74c5554111b8c86 100644 (file)
@@ -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");
index d687bf27666e5bdc70bed2fa436749aa4d48132f..2731ef8db2cbb4682c9586560305715f8be3cda5 100644 (file)
@@ -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");