summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Pauli <jpauli@php.net>2014-11-12 10:38:46 +0100
committerJulien Pauli <jpauli@php.net>2014-11-12 10:38:46 +0100
commit8eb2a1067ce478c035663c500bd74ec30731c494 (patch)
tree1b72e9c6faf06668ce497b305968ee7de5930820
parentae106ba62fa15d5d450c724c3aac11a1c346201f (diff)
downloadphp-git-PHP-5.5.19.tar.gz
-rw-r--r--NEWS4
-rw-r--r--configure.in2
-rw-r--r--main/php_version.h4
3 files changed, 6 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index af5c7f7dd8..6b72291b46 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-30 Oct 2014, PHP 5.5.19RC1
+13 Nov 2014, PHP 5.5.19
- Core:
. Fixed bug #68095 (AddressSanitizer reports a heap buffer overflow in
@@ -8,6 +8,8 @@ PHP NEWS
. Fixed bug #68118 ($a->foo .= 'test'; can leave $a->foo undefined). (Nikita)
. Fixed bug #68129 (parse_url() - incomplete support for empty usernames
and passwords) (Tjerk)
+ Fixed bug #68365 (zend_mm_heap corrupted after memory overflow in
+ zend_hash_copy). (Dmitry)
- Fileinfo:
. Fixed bug #66242 (libmagic: don't assume char is signed). (ArdB)
diff --git a/configure.in b/configure.in
index b8dfdbf4c5..02193ad65f 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
PHP_MAJOR_VERSION=5
PHP_MINOR_VERSION=5
PHP_RELEASE_VERSION=19
-PHP_EXTRA_VERSION="RC1"
+PHP_EXTRA_VERSION=""
PHP_VERSION="$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION"
PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 10000 + [$]PHP_MINOR_VERSION \* 100 + [$]PHP_RELEASE_VERSION`
diff --git a/main/php_version.h b/main/php_version.h
index fa8d28e46f..397c7f68ad 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
#define PHP_MAJOR_VERSION 5
#define PHP_MINOR_VERSION 5
#define PHP_RELEASE_VERSION 19
-#define PHP_EXTRA_VERSION "RC1"
-#define PHP_VERSION "5.5.19RC1"
+#define PHP_EXTRA_VERSION ""
+#define PHP_VERSION "5.5.19"
#define PHP_VERSION_ID 50519