[REPOST] MFH Request for Zend.c for Memory Leak

php.internals

Michael Sisolak

22 years ago
In the ZendEngine2 zend_shutdown() the GLOBAL_CONSTANTS_TABLE is correctly destroyed and freed: #ifdef ZTS . . . zend_hash_destroy(GLOBAL_CONSTANTS_TABLE); free(GLOBAL_CONSTANTS_TABLE); . . . #endif Can this to MFHed into the PHP 4.3.x zend.c (where the GLOBAL_CONSTANTS_TABLE is currently not getting freed on thread shutdown) so that the bottom of zend_shutdown() looks like: #ifndef ZTS zend_shutdown_constants(); #else zend_hash_destroy(GLOBAL_CONSTANTS_TABLE); free(GLOBAL_CONSTANTS_TABLE); #endif I've attached a patch for 4.3.5RC1. Michael Sisolak msisolak@yahoo.com __________________________________ Do you Yahoo!? Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes http://hotjobs.sweepstakes.yahoo.com/signingbonus