]> granicus.if.org Git - php/commitdiff
Fix bug #71798 - Integer Overflow in php_raw_url_encode
authorStanislav Malyshev <stas@php.net>
Sun, 27 Mar 2016 21:22:19 +0000 (14:22 -0700)
committerStanislav Malyshev <stas@php.net>
Sun, 27 Mar 2016 21:22:19 +0000 (14:22 -0700)
ext/standard/url.c
main/php_version.h

index 2f56d3186d45767f6a46ecd4f7a269898bb4e411..27a216a5e0f850eefcbc30c238b56d1e60ae1da9 100644 (file)
@@ -599,7 +599,7 @@ PHPAPI int php_url_decode(char *str, int len)
  */
 PHPAPI char *php_raw_url_encode(char const *s, int len, int *new_length)
 {
-       register int x, y;
+       register size_t x, y;
        unsigned char *str;
 
        str = (unsigned char *) safe_emalloc(3, len, 1);
index 25446e3d65e838e5a5f5fa48059ca98205f05687..4ebff7f9ac38024b1f541b6fd740658e1e44af69 100644 (file)
@@ -2,7 +2,7 @@
 /* edit configure.in to change version number */
 #define PHP_MAJOR_VERSION 5
 #define PHP_MINOR_VERSION 5
-#define PHP_RELEASE_VERSION 34
+#define PHP_RELEASE_VERSION 27
 #define PHP_EXTRA_VERSION "-dev"
-#define PHP_VERSION "5.5.34-dev"
-#define PHP_VERSION_ID 50534
+#define PHP_VERSION "5.5.27-dev"
+#define PHP_VERSION_ID 50527