summaryrefslogtreecommitdiff
path: root/malloc/memusage.c
diff options
context:
space:
mode:
Diffstat (limited to 'malloc/memusage.c')
-rw-r--r--malloc/memusage.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/malloc/memusage.c b/malloc/memusage.c
index 9003d8094a..bf2978ef02 100644
--- a/malloc/memusage.c
+++ b/malloc/memusage.c
@@ -887,4 +887,10 @@ dest (void)
fputc ('=', stderr);
fputs ("\e[0;0m\n", stderr);
}
+
+ /* Any following malloc/free etc. calls should generate statistics again,
+ because otherwise freeing something that has been malloced before
+ this destructor (including struct header in front of it) wouldn't
+ be properly freed. */
+ not_me = false;
}