Relating to a previous question of mine
I\'ve successfully interposed malloc, but calloc seems to be more problematic.
malloc
calloc
That is with ce
Using dlsym based hooking can result in crashes, as dlsym calls back into the memory allocator. Instead use malloc hooks, as I suggested in your prior question; these can be installed without actually invoking dlsym at all.
dlsym