mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
* malloc/memusage.c (dest): Reset not_me back to false after
printing statistics.
This commit is contained in:
@ -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>
|
2006-11-02 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* configure.in: Work around ld --help change and avoid -z relro
|
* configure.in: Work around ld --help change and avoid -z relro
|
||||||
|
@ -887,4 +887,10 @@ dest (void)
|
|||||||
fputc ('=', stderr);
|
fputc ('=', stderr);
|
||||||
fputs ("\e[0;0m\n", 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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user