Skip to content

Commit 0ca1698

Browse files
committed
5.6.24RC1
1 parent 884db2f commit 0ca1698

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

NEWS

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
?? ??? 2016, PHP 5.6.24
3+
07 Jul 2016, PHP 5.6.24RC1
44

55
- Core:
66
. Fix bug #71936 (Segmentation fault destroying HTTP_RAW_POST_DATA).
77
(mike dot laspina at gmail dot com, Remi)
88
. Fix bug #72496 (Cannot declare public method with signature incompatible
99
with parent private method). (Pedro Magalhães)
10+
. Fix bug #72138 (Integer Overflow in Length of String-typed ZVAL). (Stas)
1011

1112
- bz2:
1213
. Fix bug #72447 (Type Confusion in php_bz2_filter_create()). (gogil at
1314
stealien dot com).
1415

15-
- Core:
16-
. Fix bug #72138 (Integer Overflow in Length of String-typed ZVAL). (Stas)
17-
1816
- EXIF:
1917
. Fixed bug #50845 (exif_read_data() returns corrupted exif headers).
2018
(Bartosz Dziewoński)

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=6
122122
PHP_RELEASE_VERSION=24
123-
PHP_EXTRA_VERSION="-dev"
123+
PHP_EXTRA_VERSION="RC1"
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 6
55
#define PHP_RELEASE_VERSION 24
6-
#define PHP_EXTRA_VERSION "-dev"
7-
#define PHP_VERSION "5.6.24-dev"
6+
#define PHP_EXTRA_VERSION "RC1"
7+
#define PHP_VERSION "5.6.24RC1"
88
#define PHP_VERSION_ID 50624

0 commit comments

Comments
 (0)