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.
2 parents 8b58b2a + ed9d1b7 commit b592cd7Copy full SHA for b592cd7
NEWS
@@ -2,6 +2,10 @@ PHP NEWS
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
?? ??? ????, PHP 7.3.0alpha3
4
5
+- Core:
6
+ . Fixed bug #76520 (Object creation leaks memory when executed over HTTP).
7
+ (Nikita)
8
+
9
- FPM:
10
. Fixed bug #73342 (Vulnerability in php-fpm by changing stdin to
11
non-blocking). (Nikita)
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