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.
2 parents 2f43834 + f99bf70 commit 33e96c9Copy full SHA for 33e96c9
Zend/zend_alloc.c
@@ -2299,7 +2299,7 @@ ZEND_API int is_zend_mm(void)
2299
#endif
2300
}
2301
2302
-#if !ZEND_DEBUG && (!defined(_WIN32) || defined(__clang__))
+#if !ZEND_DEBUG && defined(HAVE_BUILTIN_CONSTANT_P)
2303
#undef _emalloc
2304
2305
#if ZEND_MM_CUSTOM
sapi/phpdbg/phpdbg.c
@@ -1331,7 +1331,7 @@ void phpdbg_free_wrapper(void *p ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC) /* {{
1331
*/
1332
} else {
1333
phpdbg_watch_efree(p);
1334
- return _zend_mm_free(heap, p ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
+ _zend_mm_free(heap, p ZEND_FILE_LINE_RELAY_CC ZEND_FILE_LINE_ORIG_RELAY_CC);
1335
1336
} /* }}} */
1337
0 commit comments