This commit is contained in:
Nikita Popov 2018-06-22 16:22:04 +02:00
parent 4a4c72a82a
commit ed9d1b708b
2 changed files with 5 additions and 0 deletions

4
NEWS
View File

@ -2,6 +2,10 @@ PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? ????, PHP 7.2.8
- Core:
. Fixed bug #76520 (Object creation leaks memory when executed over HTTP).
(Nikita)
- Date:
. Fixed bug #76462 (Undefined property: DateInterval::$f). (Anatol)

View File

@ -142,6 +142,7 @@ void init_executor(void) /* {{{ */
EG(in_autoload) = NULL;
EG(autoload_func) = NULL;
EG(error_handling) = EH_NORMAL;
EG(flags) = EG_FLAGS_INITIAL;
zend_vm_stack_init();