mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Merge branch 'PHP-7.1'
* PHP-7.1: Fixed #73973 - debug_zval_dump() assertion error for resource consts with --enable-debug
This commit is contained in:
commit
306f55bef4
4 changed files with 14 additions and 12 deletions
|
@ -345,6 +345,10 @@ void shutdown_executor(void) /* {{{ */
|
|||
zend_llist_destroy(&CG(open_files));
|
||||
} zend_end_try();
|
||||
|
||||
zend_try {
|
||||
clean_non_persistent_constants();
|
||||
} zend_end_try();
|
||||
|
||||
zend_try {
|
||||
zend_close_rsrc_list(&EG(regular_list));
|
||||
} zend_end_try();
|
||||
|
@ -376,10 +380,6 @@ void shutdown_executor(void) /* {{{ */
|
|||
}
|
||||
} zend_end_try();
|
||||
|
||||
zend_try {
|
||||
clean_non_persistent_constants();
|
||||
} zend_end_try();
|
||||
|
||||
zend_try {
|
||||
#if 0&&ZEND_DEBUG
|
||||
signal(SIGSEGV, original_sigsegv_handler);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue