mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Merge branch 'PHP-8.3' into PHP-8.4
* PHP-8.3: Fix 'phpdbg --help' segfault on shutdown with USE_ZEND_ALLOC=0
This commit is contained in:
commit
6685414a77
2 changed files with 3 additions and 6 deletions
3
NEWS
3
NEWS
|
@ -57,6 +57,9 @@ PHP NEWS
|
|||
. Add missing filter cleanups on phar failure. (nielsdos)
|
||||
. Fixed bug GH-18642 (Signed integer overflow in ext/phar fseek). (nielsdos)
|
||||
|
||||
- PHPDBG:
|
||||
. Fix 'phpdbg --help' segfault on shutdown with USE_ZEND_ALLOC=0. (nielsdos)
|
||||
|
||||
- PGSQL:
|
||||
. Fix warning not being emitted when failure to cancel a query with
|
||||
pg_cancel_query(). (Girgias)
|
||||
|
|
|
@ -180,12 +180,6 @@ static PHP_MSHUTDOWN_FUNCTION(phpdbg) /* {{{ */
|
|||
phpdbg_notice("Script ended normally");
|
||||
}
|
||||
|
||||
/* hack to restore mm_heap->use_custom_heap in order to receive memory leak info */
|
||||
if (use_mm_wrappers) {
|
||||
/* ASSUMING that mm_heap->use_custom_heap is the first element of the struct ... */
|
||||
*(int *) zend_mm_get_heap() = 0;
|
||||
}
|
||||
|
||||
if (PHPDBG_G(buffer)) {
|
||||
free(PHPDBG_G(buffer));
|
||||
PHPDBG_G(buffer) = NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue