From e4a7e18a0c37ce1b3d24ec8511b017ef4391ae49 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 25 Oct 2000 07:41:11 +0000 Subject: compiles on Linux now --- lib/memdebug.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/memdebug.c b/lib/memdebug.c index 5e7d645c6..477ee43cf 100644 --- a/lib/memdebug.c +++ b/lib/memdebug.c @@ -54,7 +54,7 @@ * Don't use these with multithreaded test programs! */ -FILE *logfile=stderr; +FILE *logfile; /* this sets the log file name */ void curl_memdebug(char *logname) @@ -66,7 +66,7 @@ void curl_memdebug(char *logname) void *curl_domalloc(size_t size, int line, char *source) { void *mem=(malloc)(size); - fprintf(logfile, "MEM %s:%d malloc(%d) = %p\n", + fprintf(logfile?logfile:stderr, "MEM %s:%d malloc(%d) = %p\n", source, line, size, mem); return mem; } @@ -75,7 +75,7 @@ char *curl_dostrdup(char *str, int line, char *source) { char *mem=(strdup)(str); size_t len=strlen(str)+1; - fprintf(logfile, "MEM %s:%d strdup(%p) (%d) = %p\n", + fprintf(logfile?logfile:stderr, "MEM %s:%d strdup(%p) (%d) = %p\n", source, line, str, len, mem); return mem; } @@ -83,7 +83,7 @@ char *curl_dostrdup(char *str, int line, char *source) void *curl_dorealloc(void *ptr, size_t size, int line, char *source) { void *mem=(realloc)(ptr, size); - fprintf(logfile, "MEM %s:%d realloc(%p, %d) = %p\n", + fprintf(logfile?logfile:stderr, "MEM %s:%d realloc(%p, %d) = %p\n", source, line, ptr, size, mem); return mem; } @@ -91,7 +91,7 @@ void *curl_dorealloc(void *ptr, size_t size, int line, char *source) void curl_dofree(void *ptr, int line, char *source) { (free)(ptr); - fprintf(logfile, "MEM %s:%d free(%p)\n", + fprintf(logfile?logfile:stderr, "MEM %s:%d free(%p)\n", source, line, ptr); } -- cgit v1.2.3