]> granicus.if.org Git - php/commitdiff
int -> size_t
authorRasmus Lerdorf <rasmus@lerdorf.com>
Wed, 21 Jan 2015 06:45:07 +0000 (22:45 -0800)
committerRasmus Lerdorf <rasmus@lerdorf.com>
Wed, 21 Jan 2015 06:45:07 +0000 (22:45 -0800)
ext/curl/interface.c

index 2f0fb8d684fe76dada6c2cadb7547c336eff88ab..6ac5010d00ff7a0398cedeb95ec0bae702add409 100644 (file)
@@ -3348,7 +3348,8 @@ PHP_FUNCTION(curl_escape)
 PHP_FUNCTION(curl_unescape)
 {
        char       *str = NULL, *out = NULL;
-       int        str_len = 0, out_len;
+       size_t     str_len = 0;
+       int        out_len;
        zval       *zid;
        php_curl   *ch;