Skip to content

Commit 33e96c9

Browse files
committed
Merge branch 'PHP-7.0' into PHP-7.1
2 parents 2f43834 + f99bf70 commit 33e96c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Zend/zend_alloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2299,7 +2299,7 @@ ZEND_API int is_zend_mm(void)
22992299
#endif
23002300
}
23012301

2302-
#if !ZEND_DEBUG && (!defined(_WIN32) || defined(__clang__))
2302+
#if !ZEND_DEBUG && defined(HAVE_BUILTIN_CONSTANT_P)
23032303
#undef _emalloc
23042304

23052305
#if ZEND_MM_CUSTOM

sapi/phpdbg/phpdbg.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1331,7 +1331,7 @@ void phpdbg_free_wrapper(void *p ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC) /* {{
13311331
*/
13321332
} else {
13331333
phpdbg_watch_efree(p);
1334-
return _zend_mm_free(heap, p ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
1334+
_zend_mm_free(heap, p ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
13351335
}
13361336
} /* }}} */
13371337

0 commit comments

Comments
 (0)