|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2005-03-28 17:29 UTC] lacey at lacey dot cc
Description: ------------ Memory Leak using the php5isapi.dll under IIS. When TSRMLS_FETCH() is called from HTTPExtensionProc, ts_free_thread leaves a Memory Leak of approximately 100K for every call. When TSRMLS_FETCH() isn't called, there's no leak. This leak will crash a Server under light loads within a few hours. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 07:00:02 2025 UTC |
This is the "patch" to fix this, according to the reportee static void executor_globals_dtor(zend_executor_globals *executor_globals TSRMLS_DC) { zend_ini_shutdown(TSRMLS_C); zend_shutdown_constants(TSRMLS_C); } Dmitry, can you check this out, if it makes any sense.