summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorNikita Popov <nikic@php.net>2014-12-19 21:40:54 +0100
committerNikita Popov <nikic@php.net>2014-12-19 21:42:42 +0100
commitaa394e70ff8cda63ee4382d2488d80936e5122dc (patch)
tree520f17b724dd31f4aee03a933c625313540bc461 /NEWS
parent5fc2fede9c7c963c950d8b96dcc0f7af88b4d695 (diff)
downloadphp-git-aa394e70ff8cda63ee4382d2488d80936e5122dc.tar.gz
Fix bug #67111
Loop variables need to be freed for both "break" and "continue". I'm adding the test to Zend/ because it's good to have a test for this even without opcache.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 4a321a5873..8d6fdff92b 100644
--- a/NEWS
+++ b/NEWS
@@ -31,6 +31,10 @@ PHP NEWS
- Mcrypt:
. Fixed possible read after end of buffer and use after free. (Dmitry)
+- Opcache:
+ . Fixed bug #67111 (Memory leak when using "continue 2" inside two foreach
+ loops). (Nikita)
+
- Pcntl:
. Fixed bug #60509 (pcntl_signal doesn't decrease ref-count of old handler
when setting SIG_DFL). (Julien)