We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d663296 commit f99bf70Copy full SHA for f99bf70
Zend/zend_alloc.c
@@ -2343,7 +2343,7 @@ ZEND_API int is_zend_mm(void)
2343
#endif
2344
}
2345
2346
-#if !ZEND_DEBUG && (!defined(_WIN32) || defined(__clang__))
+#if !ZEND_DEBUG && defined(HAVE_BUILTIN_CONSTANT_P)
2347
#undef _emalloc
2348
2349
#if ZEND_MM_CUSTOM
sapi/phpdbg/phpdbg.c
@@ -1300,7 +1300,7 @@ void phpdbg_free_wrapper(void *p ZEND_FILE_LINE_DC ZEND_FILE_LINE_ORIG_DC) /* {{
1300
*/
1301
} else {
1302
phpdbg_watch_efree(p);
1303
- 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);
1304
1305
} /* }}} */
1306
0 commit comments