1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

Remove assert in malloc statistic. Fixes bug 12486.

This commit is contained in:
Ondřej Bílka
2013-10-18 09:32:35 +02:00
parent 264aad1e6a
commit 0bfcf2c73c
2 changed files with 5 additions and 9 deletions

View File

@ -2216,15 +2216,6 @@ static void do_check_malloc_state(mstate av)
/* top chunk is OK */
check_chunk(av, av->top);
/* sanity checks for statistics */
assert(mp_.n_mmaps <= mp_.max_n_mmaps);
assert((unsigned long)(av->system_mem) <=
(unsigned long)(av->max_system_mem));
assert((unsigned long)(mp_.mmapped_mem) <=
(unsigned long)(mp_.max_mmapped_mem));
}
#endif