In antlr3collections.c, the function newPool() is calling both realloc and malloc without properly handling the out of memory (NULL return) case.
This ultimately leads to my application crashing in antlr3commontoken.c, in newPoolToken() with an access violation caused by a NULL pointer dereference.