Skip to content

Commit cce3165

Browse files
committed
Fix typo
Accidentially dropped the "!" here.
1 parent c6357b8 commit cce3165

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_alloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2801,7 +2801,7 @@ static void alloc_globals_ctor(zend_alloc_globals *alloc_globals)
28012801

28022802
#if ZEND_MM_CUSTOM
28032803
tmp = getenv("USE_ZEND_ALLOC");
2804-
if (tmp && ZEND_ATOL(tmp)) {
2804+
if (tmp && !ZEND_ATOL(tmp)) {
28052805
bool tracked = (tmp = getenv("USE_TRACKED_ALLOC")) && ZEND_ATOL(tmp);
28062806
zend_mm_heap *mm_heap = alloc_globals->mm_heap = malloc(sizeof(zend_mm_heap));
28072807
memset(mm_heap, 0, sizeof(zend_mm_heap));

0 commit comments

Comments
 (0)