diff options
author | Stanislav Malyshev <stas@php.net> | 2016-07-19 22:37:03 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2016-07-19 22:37:03 -0700 |
commit | 8ebdb1f5fd19cb15dd6ac7700c781ede5dcbba95 (patch) | |
tree | 82051aab65007186f326ce83f25240ae5d48fe6a /ext/zip | |
parent | 75211491936ab23281e7d6d45a1fd78076571d0c (diff) | |
download | php-git-8ebdb1f5fd19cb15dd6ac7700c781ede5dcbba95.tar.gz |
Improve fix for #72520
Diffstat (limited to 'ext/zip')
-rw-r--r-- | ext/zip/zip_stream.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/zip/zip_stream.c b/ext/zip/zip_stream.c index a9192d26cb..45171221d2 100644 --- a/ext/zip/zip_stream.c +++ b/ext/zip/zip_stream.c @@ -101,13 +101,13 @@ static int php_zip_ops_stat(php_stream *stream, php_stream_statbuf *ssb TSRMLS_D { struct zip_stat sb; const char *path = stream->orig_path; - int path_len = strlen(stream->orig_path); + size_t path_len = strlen(stream->orig_path); char *file_basename; size_t file_basename_len; char file_dirname[MAXPATHLEN]; struct zip *za; char *fragment; - int fragment_len; + size_t fragment_len; int err; fragment = strchr(path, '#'); |