Skip to content

Commit 3ef8ebd

Browse files
committed
Fixup casing
1 parent 88319f7 commit 3ef8ebd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Zend/zend_execute_API.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,10 +439,10 @@ void shutdown_executor(void) /* {{{ */
439439
#if ZEND_DEBUG
440440
bool fast_shutdown = 0;
441441
#elif defined(__SANITIZE_ADDRESS__)
442-
char *forceFastShutdown = getenv("ZEND_FORCE_FAST_SHUTDOWN");
442+
char *force_fast_shutdown = getenv("ZEND_FORCE_FAST_SHUTDOWN");
443443
bool fast_shutdown = (
444444
is_zend_mm()
445-
|| (forceFastShutdown && ZEND_ATOL(forceFastShutdown))
445+
|| (force_fast_shutdown && ZEND_ATOL(force_fast_shutdown))
446446
) && !EG(full_tables_cleanup);
447447
#else
448448
bool fast_shutdown = is_zend_mm() && !EG(full_tables_cleanup);

0 commit comments

Comments
 (0)