diff options
Diffstat (limited to 'docs/INTERNALS.md')
-rw-r--r-- | docs/INTERNALS.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/INTERNALS.md b/docs/INTERNALS.md index 9bbf63161..6f6c8b88a 100644 --- a/docs/INTERNALS.md +++ b/docs/INTERNALS.md @@ -773,7 +773,9 @@ Track Down Memory Leaks Add a line in your application code: - `curl_dbg_memdebug("dump");` +```c + 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 |