Skip to content

Commit 57d4784

Browse files
author
Julien Pauli
committed
5.5.21
1 parent 7ce410b commit 57d4784

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

NEWS

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
8 Jan 2014, PHP 5.5.21RC1
3+
22 Jan 2014, PHP 5.5.21
44

55
- Core:
66
. Upgraded crypt_blowfish to version 1.3. (Leigh)
@@ -19,17 +19,24 @@ PHP NEWS
1919
. Fixed bug #68594 (Use after free vulnerability in unserialize()).
2020
(CVE-2014-8142) (Stefan Esser)
2121
. Fixed bug #68676 (Explicit Double Free). (Kalle)
22+
. Fixed bug #68710 (Use After Free Vulnerability in PHP's unserialize()).
23+
(CVE-2015-0231) (Stefan Esser)
2224

2325
- CGI:
24-
. Fix bug #68618 (out of bounds read crashes php-cgi). (Stas)
26+
. Fixed bug #68618 (out of bounds read crashes php-cgi).(CVE-2014-9427)
27+
(Stas)
2528

2629
- CLI server:
27-
. Fix bug #68745 (Invalid HTTP requests make web server segfault). (Adam)
30+
. Fixed bug #68745 (Invalid HTTP requests make web server segfault). (Adam)
2831

2932
- cURL:
3033
. Fixed bug #67643 (curl_multi_getcontent returns '' when
3134
CURLOPT_RETURNTRANSFER isn't set). (Jille Timmermans)
3235

36+
- EXIF:
37+
. Fixed bug #68799: Free called on unitialized pointer. (CVE-2015-0232)
38+
(Stas)
39+
3340
- Fileinfo:
3441
. Fixed bug #68671 (incorrect expression in libmagic).
3542
(Joshua Rogers, Anatol Belski)

configure.in

Lines changed: 1 addition & 1 deletion
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=5
122122
PHP_RELEASE_VERSION=21
123-
PHP_EXTRA_VERSION="RC1"
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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
#define PHP_MAJOR_VERSION 5
44
#define PHP_MINOR_VERSION 5
55
#define PHP_RELEASE_VERSION 21
6-
#define PHP_EXTRA_VERSION "RC1"
7-
#define PHP_VERSION "5.5.21RC1"
6+
#define PHP_EXTRA_VERSION ""
7+
#define PHP_VERSION "5.5.21"
88
#define PHP_VERSION_ID 50521

0 commit comments

Comments
 (0)