Solved FreeBSD 15 and PHP 8.3 CLI generates "exited on signal 11 (core dumped)"

Looks like there's a proposed patch for PHP already (from reading your PR), and it was the XLST code:

Remove xsltCleanupGlobals call in ext/xsl MSHUTDOWN.

The call to xsltCleanupGlobals() during module shutdown can cause
a segfault in xmlHashFree() when freeing libxslt internal hash
tables. This is the same class of shutdown cleanup issue that led
to xmlCleanupParser() being removed from ext/libxml. The process
is about to exit and the OS will reclaim all memory, making the
explicit cleanup both unnecessary and harmful.
 
Back
Top