1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 17:22:15 +01:00

Removing a unused local variable.

Setting the size before returning the value in readgzfile
This commit is contained in:
Frank M. Kromann
2002-04-12 16:25:31 +00:00
parent 0f0a5dddf3
commit 7ff43f040f

View File

@@ -154,7 +154,7 @@ static PHP_INI_MH(OnUpdate_zlib_output_compression)
/* {{{ OnUpdate_zlib_output_compression_level */
static PHP_INI_MH(OnUpdate_zlib_output_compression_level)
{
char *ini_value;
// char *ini_value;
OnUpdateInt(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
@@ -386,7 +386,7 @@ PHP_FUNCTION(readgzfile)
if (!stream) {
RETURN_FALSE;
}
php_stream_passthru(stream);
size = php_stream_passthru(stream);
php_stream_close(stream);
RETURN_LONG(size);
}