]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
memdebug: skip logging the limit countdown, fflush when reached
authorDaniel Stenberg <daniel@haxx.se>
Mon, 14 Mar 2016 14:36:40 +0000 (15:36 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 14 Mar 2016 14:36:40 +0000 (15:36 +0100)
lib/memdebug.c

index 59a0fe982e79a23f46da6450836e2d2f9e6395ee..804b5fa347fea1393ae7a36c2778afc2a7430aa9 100644 (file)
@@ -5,7 +5,7 @@
  *                            | (__| |_| |  _ <| |___
  *                             \___|\___/|_| \_\_____|
  *
- * Copyright (C) 1998 - 2015, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
  *
  * This software is licensed as described in the file COPYING, which
  * you should have received as part of this distribution. The terms
@@ -146,6 +146,7 @@ static bool countcheck(const char *func, int line, const char *source)
         /* log to stderr also */
         fprintf(stderr, "LIMIT %s:%d %s reached memlimit\n",
                 source, line, func);
+        fflush(logfile); /* because it might crash now */
       }
       SET_ERRNO(ENOMEM);
       return TRUE; /* RETURN ERROR! */
@@ -153,10 +154,6 @@ static bool countcheck(const char *func, int line, const char *source)
     else
       memsize--; /* countdown */
 
-    /* log the countdown */
-    if(source)
-      curl_memlog("LIMIT %s:%d %ld ALLOCS left\n",
-                  source, line, memsize);
 
   }