Paul J Stevens <[EMAIL PROTECTED]> said: > I've just finished clearing up a whole class of double-frees by mapping > strdup to my_strdup which uses my_malloc. This allows us to use my_malloc, > my_free, my_calloc, my_realloc consistently throughout the code. These can > then of course be #defined to something else without risking havoc... > > That may also help in tracking down these memory troubles, right?
Turns out that I didn't need a lot of valgrind magic before I was pointed in the direction of some stupid lists that aren't being freed in lmtp.c :-\ Aaron