We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a4c72a commit ed9d1b7Copy full SHA for ed9d1b7
NEWS
@@ -2,6 +2,10 @@ PHP NEWS
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
?? ??? ????, PHP 7.2.8
4
5
+- Core:
6
+ . Fixed bug #76520 (Object creation leaks memory when executed over HTTP).
7
+ (Nikita)
8
+
9
- Date:
10
. Fixed bug #76462 (Undefined property: DateInterval::$f). (Anatol)
11
Zend/zend_execute_API.c
@@ -142,6 +142,7 @@ void init_executor(void) /* {{{ */
142
EG(in_autoload) = NULL;
143
EG(autoload_func) = NULL;
144
EG(error_handling) = EH_NORMAL;
145
+ EG(flags) = EG_FLAGS_INITIAL;
146
147
zend_vm_stack_init();
148
0 commit comments