diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-05-12 08:22:04 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-05-12 08:22:04 +0000 |
commit | 34af02caca301a44f54c2df371f957a69e949df1 (patch) | |
tree | 4aa0099acc1c3b18f9477b6b815810c6ef73e93f /src/homedir.c | |
parent | 91025d1dd65dc4037dfd75accf20116d3a84c7bd (diff) | |
download | curl-34af02caca301a44f54c2df371f957a69e949df1.tar.gz |
Disable memdebug for the allocs done by the app, unless CURLTOOLDEBUG is
defined (which it never is atm).
Now, we can focus on making 'runtests -t [num]' work on all test cases and
we should never leak nor crash.
Diffstat (limited to 'src/homedir.c')
-rw-r--r-- | src/homedir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/homedir.c b/src/homedir.c index fedbdb8fc..3ec196a7e 100644 --- a/src/homedir.c +++ b/src/homedir.c @@ -42,8 +42,8 @@ #include "homedir.h" -#ifdef CURLDEBUG -#include "../lib/memdebug.h" +#if defined(CURLDEBUG) && defined(CURLTOOLDEBUG) +#include "memdebug.h" #endif static |