Skip to content

Commit 184d4e9

Browse files
committed
prep for 5.4.41
1 parent 9c0813f commit 184d4e9

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

NEWS

+19-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,28 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
?? ??? 2015 PHP 5.4.41
3+
14 May 2015 PHP 5.4.41
4+
5+
- Core:
6+
. Fixed bug #69364 (PHP Multipart/form-data remote dos Vulnerability). (Stas)
7+
. Fixed bug #69403 (str_repeat() sign mismatch based memory corruption).
8+
(Stas)
9+
. Fixed bug #69418 (CVE-2006-7243 fix regressions in 5.4+). (Stas)
10+
. Fixed bug #69522 (heap buffer overflow in unpack()). (Stas)
11+
12+
- FTP:
13+
. Fixed bug #69545 (Integer overflow in ftp_genlist() resulting in heap
14+
overflow). (Stas)
15+
16+
- PCNTL:
17+
. Fixed bug #68598 (pcntl_exec() should not allow null char). (Stas)
418

519
- PCRE
620
. Upgraded pcrelib to 8.37.
721

22+
- Phar:
23+
. Fixed bug #69453 (Memory Corruption in phar_parse_tarfile when entry
24+
filename starts with null). (Stas)
25+
826
16 Apr 2015 PHP 5.4.40
927

1028
- Apache2handler:

configure.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
120120
PHP_MAJOR_VERSION=5
121121
PHP_MINOR_VERSION=4
122122
PHP_RELEASE_VERSION=41
123-
PHP_EXTRA_VERSION="-dev"
123+
PHP_EXTRA_VERSION=""
124124
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
125125
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
126126

main/php_version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
#define PHP_MAJOR_VERSION 5
44
#define PHP_MINOR_VERSION 4
55
#define PHP_RELEASE_VERSION 41
6-
#define PHP_EXTRA_VERSION "-dev"
7-
#define PHP_VERSION "5.4.41-dev"
6+
#define PHP_EXTRA_VERSION ""
7+
#define PHP_VERSION "5.4.41"
88
#define PHP_VERSION_ID 50441

0 commit comments

Comments
 (0)