]> granicus.if.org Git - php/commitdiff
fix bug #65936 (dangling context pointer causes crash)
authorAntony Dovgal <tony2001@php.net>
Mon, 21 Oct 2013 11:09:29 +0000 (15:09 +0400)
committerAntony Dovgal <tony2001@php.net>
Mon, 21 Oct 2013 11:09:29 +0000 (15:09 +0400)
reported by Leon Sorokin

NEWS
ext/standard/basic_functions.c

diff --git a/NEWS b/NEWS
index a3d075af09eb7757815b09fdbe757e4771a545ae..69b1658158db821e6f66e61969a16fe9d3672e1f 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -14,6 +14,7 @@ PHP                                                                        NEWS
   . Fixed bug #65322 (compile time errors won't trigger auto loading). (Nikita)
   . Fixed bug #65821 (By-ref foreach on property access of string offset
     segfaults). (Nikita)
+  . Fixed bug #65936 (dangling context pointer causes crash). (Tony)
 
 - CLI server:
   . Fixed bug #65633 (built-in server treat some http headers as
index eca7d903680fa814702861f687aff055c8b895ac..b4128e066b7f82cf92de15da7d9e65a875bb6c56 100644 (file)
@@ -3639,6 +3639,7 @@ PHP_MINIT_FUNCTION(basic) /* {{{ */
 
        BASIC_ADD_SUBMODULE(dl)
        BASIC_ADD_SUBMODULE(mail)
+       BASIC_ADD_SUBMODULE(streams)
        BASIC_MINIT_SUBMODULE(file)
        BASIC_MINIT_SUBMODULE(pack)
        BASIC_MINIT_SUBMODULE(browscap)