Skip to content

Commit 5d394b3

Browse files
committed
Merge branch 'PHP-7.0' into PHP-7.1
2 parents 0adf919 + af3031d commit 5d394b3

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.1.0RC2
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
@@ -1925,7 +1925,7 @@ CWD_API FILE *virtual_popen(const char *command, const char *type) /* {{{ */
19251925
#else /* Unix */
19261926
CWD_API FILE *virtual_popen(const char *command, const char *type) /* {{{ */
19271927
{
1928-
int command_length;
1928+
size_t command_length;
19291929
int dir_length, extra = 0;
19301930
char *command_line;
19311931
char *ptr, *dir;

0 commit comments

Comments
 (0)