diff options
author | Anatol Belski <ab@php.net> | 2014-10-06 11:45:23 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-10-06 11:45:23 +0200 |
commit | 8d4ee9fbaabd00878190b8ae227dbbefc62b08fc (patch) | |
tree | 588f36a56ae9e8ddad229309cadc0a6ce3d9809a | |
parent | 43f3d250f45e095150d12185f9ac8bfaad27d1cc (diff) | |
download | php-git-8d4ee9fbaabd00878190b8ae227dbbefc62b08fc.tar.gz |
remove successive assignment
-rw-r--r-- | ext/zlib/zlib_filter.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/zlib/zlib_filter.c b/ext/zlib/zlib_filter.c index 6966c2a9ff..45ef2a8f7d 100644 --- a/ext/zlib/zlib_filter.c +++ b/ext/zlib/zlib_filter.c @@ -76,8 +76,6 @@ static php_stream_filter_status_t php_zlib_inflate_filter( while (buckets_in->head) { size_t bin = 0, desired; - bucket = buckets_in->head; - bucket = php_stream_bucket_make_writeable(buckets_in->head TSRMLS_CC); while (bin < (unsigned int) bucket->buflen) { |