about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2006-11-03 16:38:22 +0000
committerJakub Jelinek <jakub@redhat.com>2006-11-03 16:38:22 +0000
commit2c72abb4969f2b376a5e58c88424bd3b9c9c70b5 (patch)
treedd6c605fe5e94545a4bcb44da72929cf45a49f3a
parent4820b9175535e13df79ce816106016040014916e (diff)
downloadglibc-2c72abb4969f2b376a5e58c88424bd3b9c9c70b5.tar.gz
glibc-2c72abb4969f2b376a5e58c88424bd3b9c9c70b5.tar.xz
glibc-2c72abb4969f2b376a5e58c88424bd3b9c9c70b5.zip
* malloc/memusage.c (dest): Reset not_me back to false after printing cvs/fedora-glibc-2_5_90-4
	statistics.
-rw-r--r--ChangeLog5
-rw-r--r--malloc/memusage.c6
2 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e5f9d7d13f..876c91d494 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-11-02  Jakub Jelinek  <jakub@redhat.com>
+
+	* malloc/memusage.c (dest): Reset not_me back to false after printing
+	statistics.
+
 2006-11-02  Ulrich Drepper  <drepper@redhat.com>
 
 	* configure.in: Work around ld --help change and avoid -z relro
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;
 }