Skip to content

Commit b636c03

Browse files
committed
fix bug #65936 (dangling context pointer causes crash)
reported by Leon Sorokin
1 parent e78c536 commit b636c03

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ PHP NEWS
1414
. Fixed bug #65322 (compile time errors won't trigger auto loading). (Nikita)
1515
. Fixed bug #65821 (By-ref foreach on property access of string offset
1616
segfaults). (Nikita)
17+
. Fixed bug #65936 (dangling context pointer causes crash). (Tony)
1718

1819
- CLI server:
1920
. Fixed bug #65633 (built-in server treat some http headers as

ext/standard/basic_functions.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3639,6 +3639,7 @@ PHP_MINIT_FUNCTION(basic) /* {{{ */
36393639

36403640
BASIC_ADD_SUBMODULE(dl)
36413641
BASIC_ADD_SUBMODULE(mail)
3642+
BASIC_ADD_SUBMODULE(streams)
36423643
BASIC_MINIT_SUBMODULE(file)
36433644
BASIC_MINIT_SUBMODULE(pack)
36443645
BASIC_MINIT_SUBMODULE(browscap)

0 commit comments

Comments
 (0)