From 050d7e38ad4163e7fa65e26724d3516ce7b33601 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Tue, 15 Apr 2014 15:40:40 +0400 Subject: Cleanup (1-st round) --- ext/zlib/zlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/zlib/zlib.c') diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index 705fb5dd5f..3753f98a67 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -564,7 +564,7 @@ static PHP_FUNCTION(gzfile) memset(buf, 0, sizeof(buf)); while (php_stream_gets(stream, buf, sizeof(buf) - 1) != NULL) { - add_index_string(return_value, i++, buf, 1); + add_index_string(return_value, i++, buf); } php_stream_close(stream); } -- cgit v1.2.1