We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88319f7 commit 3ef8ebdCopy full SHA for 3ef8ebd
Zend/zend_execute_API.c
@@ -439,10 +439,10 @@ void shutdown_executor(void) /* {{{ */
439
#if ZEND_DEBUG
440
bool fast_shutdown = 0;
441
#elif defined(__SANITIZE_ADDRESS__)
442
- char *forceFastShutdown = getenv("ZEND_FORCE_FAST_SHUTDOWN");
+ char *force_fast_shutdown = getenv("ZEND_FORCE_FAST_SHUTDOWN");
443
bool fast_shutdown = (
444
is_zend_mm()
445
- || (forceFastShutdown && ZEND_ATOL(forceFastShutdown))
+ || (force_fast_shutdown && ZEND_ATOL(force_fast_shutdown))
446
) && !EG(full_tables_cleanup);
447
#else
448
bool fast_shutdown = is_zend_mm() && !EG(full_tables_cleanup);
0 commit comments