While reviewing the zend_register_functions function in php/Zend/zend_API.c, I noticed several lines that call malloc without checking for a NULL return value. This ...
(No checks are explained in this summary and some case have been omitted for brevity) __libc_malloc tries to get a chunk from the tcache, if not it calls _int_malloc _int_malloc: Tries to generate the ...