1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 03:03:26 +02:00

Panic with abort() (#8590)

This commit is contained in:
Arnaud Le Blanc
2022-05-21 15:07:00 +02:00
committed by GitHub
parent 016ac7c132
commit 96838129ea
+1 -1
View File
@@ -364,7 +364,7 @@ static ZEND_COLD ZEND_NORETURN void zend_mm_panic(const char *message)
#if ZEND_DEBUG && defined(HAVE_KILL) && defined(HAVE_GETPID)
kill(getpid(), SIGSEGV);
#endif
exit(1);
abort();
}
static ZEND_COLD ZEND_NORETURN void zend_mm_safe_error(zend_mm_heap *heap,