diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-05-05 06:57:04 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-05-05 06:57:04 +0000 |
commit | a331aa02213238d8efae9a046fea93860c62fc87 (patch) | |
tree | 226616ef1321dcf3b9ef14ae8906260d95bc82e8 /lib/memdebug.c | |
parent | 679cabb532a85f3fb789668c7e1c4aa832d1bc74 (diff) | |
download | curl-a331aa02213238d8efae9a046fea93860c62fc87.tar.gz |
make the memlimit final NULL return get written to stderr as wella
Diffstat (limited to 'lib/memdebug.c')
-rw-r--r-- | lib/memdebug.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/memdebug.c b/lib/memdebug.c index 96ea5d94c..05d0702fe 100644 --- a/lib/memdebug.c +++ b/lib/memdebug.c @@ -91,6 +91,9 @@ static bool countcheck(const char *func, int line, const char *source) if(logfile && source) fprintf(logfile, "LIMIT %s:%d %s reached memlimit\n", source, line, func); + if(source) + fprintf(stderr, "LIMIT %s:%d %s reached memlimit\n", + source, line, func); return TRUE; /* RETURN ERROR! */ } else |