| [AD] malloc |
[ Thread Index | Date Index | More lists.liballeg.org/allegro-developers Archives ]
allegro src code seems to have many instances of malloc() thruout the code.
there is also a wrapper for malloc in allegro.c (line646)
void *_al_malloc(int size)
{
return malloc(size);
}
is there any reasons why all those malloc() calls could not use the
_al_malloc() ?
shall i submit patches for all 168 instances of malloc() ?
| Mail converted by MHonArc 2.6.19+ | http://listengine.tuxfamily.org/ |