1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 02:33:17 +02:00

Merge branch 'PHP-7.1'

* PHP-7.1:
  Fix bug #73645 - int/size_t confusion
This commit is contained in:
Stanislav Malyshev
2016-12-05 22:16:48 -08:00
+2 -2
View File
@@ -12,7 +12,7 @@
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Stig Sæther Bakken <ssb@php.net> |
| Author: Stig Sæther Bakken <ssb@php.net> |
+----------------------------------------------------------------------+
*/
@@ -33,7 +33,7 @@
PHPAPI char *
php_canonicalize_version(const char *version)
{
int len = strlen(version);
size_t len = strlen(version);
char *buf = safe_emalloc(len, 2, 1), *q, lp, lq;
const char *p;