|
From: Nicholas N. <nj...@cs...> - 2005-02-10 02:20:39
|
CVS commit by nethercote:
Don't assert if the demangler leaks. It happens very rarely, and is not
much of a problem when it does.
BUGS:87480
M +3 -1 vg_demangle.c 1.9
--- valgrind/coregrind/vg_demangle.c #1.8:1.9
@@ -65,5 +65,7 @@ void VG_(demangle) ( Char* orig, Char* r
/* 15 Feb 02: if this assertion fails, this is not a disaster.
Comment it out, and let me know. (js...@ac...). */
- vg_assert(VG_(is_empty_arena)(VG_AR_DEMANGLE));
+ // 9 Feb 05: it fails very occasionally, as reported in bug #87480.
+ // It's very rare, and not a disaster, so let it slide.
+ //vg_assert(VG_(is_empty_arena)(VG_AR_DEMANGLE));
/* VG_(show_all_arena_stats)(); */
|