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

How's that possible diizzy ? I have: OpenSSL 3.5.4 30 Sep 2025 (Library: OpenSSL 3.5.4 30 Sep 2025) in 15.0-RELEASE-p5 😊🙃
 
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