Skip to content

Commit af3031d

Browse files
committed
Merge branch 'PHP-5.6' into PHP-7.0
2 parents a58e6d4 + dad7936 commit af3031d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
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
?? ??? 2016 PHP 7.0.12
44

5+
- Core:
6+
. Fixed bug #73025 (Heap Buffer Overflow in virtual_popen of
7+
zend_virtual_cwd.c). (cmb)
8+
59
- Filter:
610
. Fixed bug #72972 (Bad filter for the flags FILTER_FLAG_NO_RES_RANGE and
711
FILTER_FLAG_NO_PRIV_RANGE). (julien)

Zend/zend_virtual_cwd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1854,7 +1854,7 @@ CWD_API FILE *virtual_popen(const char *command, const char *type) /* {{{ */
18541854
#else /* Unix */
18551855
CWD_API FILE *virtual_popen(const char *command, const char *type) /* {{{ */
18561856
{
1857-
int command_length;
1857+
size_t command_length;
18581858
int dir_length, extra = 0;
18591859
char *command_line;
18601860
char *ptr, *dir;

0 commit comments

Comments
 (0)