From: Stanislav Malyshev Date: Wed, 13 Jul 2016 05:03:40 +0000 (-0700) Subject: Fix fir bug #72520 X-Git-Tag: php-5.5.38~10^2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=81406c0c1d45f75fcc7972ed974d2597abb0b9e9;p=php Fix fir bug #72520 --- diff --git a/ext/zip/zip_stream.c b/ext/zip/zip_stream.c index 400edd6e6c..a9192d26cb 100644 --- a/ext/zip/zip_stream.c +++ b/ext/zip/zip_stream.c @@ -214,7 +214,7 @@ php_stream *php_stream_zip_open(char *filename, char *path, char *mode STREAMS_D self = emalloc(sizeof(*self)); self->za = stream_za; - self->zf = zf; + self->zf = zf; self->stream = NULL; self->cursor = 0; stream = php_stream_alloc(&php_stream_zipio_ops, self, NULL, mode); @@ -241,7 +241,7 @@ php_stream *php_stream_zip_opener(php_stream_wrapper *wrapper, char **opened_path, php_stream_context *context STREAMS_DC TSRMLS_DC) { - int path_len; + size_t path_len; char *file_basename; size_t file_basename_len; @@ -250,7 +250,7 @@ php_stream *php_stream_zip_opener(php_stream_wrapper *wrapper, struct zip *za; struct zip_file *zf = NULL; char *fragment; - int fragment_len; + size_t fragment_len; int err; php_stream *stream = NULL; @@ -293,7 +293,7 @@ php_stream *php_stream_zip_opener(php_stream_wrapper *wrapper, self = emalloc(sizeof(*self)); self->za = za; - self->zf = zf; + self->zf = zf; self->stream = NULL; self->cursor = 0; stream = php_stream_alloc(&php_stream_zipio_ops, self, NULL, mode);