lib/memintercept.c: Do not use the __libc_malloc, calloc, realloc
commit79983425cf0c7e122c53ad9bcaf0eff92f0c3180
authorHolger Hans Peter Freyther <zecke@selfish.org>
Mon, 26 Oct 2009 11:47:25 +0000 (26 12:47 +0100)
committerHolger Hans Peter Freyther <zecke@selfish.org>
Mon, 26 Oct 2009 11:50:27 +0000 (26 12:50 +0100)
tree9b897aa99331b6da65cf7c97e15764680727768e
parent75625eceb597252a63f8ad2573ae879c2da51c92
lib/memintercept.c: Do not use the __libc_malloc, calloc, realloc

The application might use a different malloc implementation and
we should call this one instead of falling back to the glibc version.

Currently __libc_ calls will go through the custom allocator as well
and the strategy here is to wait for error reports and then change
the do_malloc/do_free calls and really call the glibc version for
these routines too.

* lib/memintercept.c:
(mi_init): Use malloc/calloc/memalign/realloc directly
lib/memintercept.c