Skip to content

Commit c180a72

Browse files
committed
PHP 5.3.15
1 parent 1f6c43f commit c180a72

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

NEWS

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3-
05 Jul 2012, PHP 5.3.15RC1
3+
19 Jul 2012, PHP 5.3.15
4+
45
- Zend Engine:
56
. Fixed bug #51094 (parse_ini_file() with INI_SCANNER_RAW cuts a value that
67
includes a semi-colon). (Pierrick)
@@ -9,8 +10,8 @@ PHP NEWS
910
. Fixed bug #62146 com_dotnet cannot be built shared. (Johannes)
1011

1112
- Core:
12-
. Fixed potential overflow in _php_stream_scandir. (Jason Powell,
13-
Stas)
13+
. Fixed potential overflow in _php_stream_scandir, CVE-2012-2688. (Jason
14+
Powell, Stas)
1415
. Fixed bug #62432 (ReflectionMethod random corrupt memory on high
1516
concurrent). (Johannes)
1617
. Fixed bug #62443 (Crypt SHA256/512 Segfaults With Malformed
@@ -44,7 +45,7 @@ PHP NEWS
4445
. Fixed bug #60785 (memory leak in IntlDateFormatter constructor). (Gustavo)
4546

4647
- JSON:
47-
. Improved error handling. (Nikita Popov)
48+
. Reverted fix for bug #61537. (Johannes)
4849

4950
- Phar:
5051
. Fixed bug #62227 (Invalid phar stream path causes crash). (Felipe)
@@ -59,6 +60,10 @@ PHP NEWS
5960
. Fixed bug #62262 (RecursiveArrayIterator does not implement Countable).
6061
(Nikita Popov)
6162

63+
- SQLite:
64+
. Fixed open_basedir bypass, CVE-2012-3365. (Johannes, reported by Yury
65+
Maryshev)
66+
6267
- XML Writer:
6368
. Fixed bug #62064 (memory leak in the XML Writer module).
6469
(jean-pierre dot lozi at lip6 dot fr)

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ AC_CONFIG_HEADER(main/php_config.h)
4242
PHP_MAJOR_VERSION=5
4343
PHP_MINOR_VERSION=3
4444
PHP_RELEASE_VERSION=15
45-
PHP_EXTRA_VERSION="RC1"
45+
PHP_EXTRA_VERSION=""
4646
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
4747
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
4848

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 3
55
#define PHP_RELEASE_VERSION 15
6-
#define PHP_EXTRA_VERSION "RC1"
7-
#define PHP_VERSION "5.3.15RC1"
6+
#define PHP_EXTRA_VERSION ""
7+
#define PHP_VERSION "5.3.15"
88
#define PHP_VERSION_ID 50315

0 commit comments

Comments
 (0)