heap_checker.cc has
#ifdef HAVE___ATTRIBUTE___
in front of the code to override the initial malloc hooks.
but the define that is made when attributes are available is one underscore
shorter: HAVE___ATTRIBUTE__
so the initial malloc_hook override never occurs on any platform.
this can lead to bad answers from the heap checker if it then misses early
calls to sbrk or mmap.
Original issue reported on code.google.com by mslev...@akamai.com on 8 Oct 2007 at 4:15
Original issue reported on code.google.com by
mslev...@akamai.com
on 8 Oct 2007 at 4:15