Skip to content

Commit ed9d1b7

Browse files
committed
Fixed bug #76520
1 parent 4a4c72a commit ed9d1b7

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
33
?? ??? ????, PHP 7.2.8
44

5+
- Core:
6+
. Fixed bug #76520 (Object creation leaks memory when executed over HTTP).
7+
(Nikita)
8+
59
- Date:
610
. Fixed bug #76462 (Undefined property: DateInterval::$f). (Anatol)
711

Zend/zend_execute_API.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ void init_executor(void) /* {{{ */
142142
EG(in_autoload) = NULL;
143143
EG(autoload_func) = NULL;
144144
EG(error_handling) = EH_NORMAL;
145+
EG(flags) = EG_FLAGS_INITIAL;
145146

146147
zend_vm_stack_init();
147148

0 commit comments

Comments
 (0)