1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 17:08:14 +02:00

MFH: Better storage size for output length.

This commit is contained in:
Ilia Alshanetsky
2005-06-06 16:31:00 +00:00
parent d8eb4055f0
commit baef306ffe
+1 -1
View File
@@ -438,7 +438,7 @@ PHP_FUNCTION(bzdecompress)
char *source, *dest;
int source_len, error;
long small = 0;
unsigned int size = 0;
unsigned long long size = 0;
bz_stream bzs;
if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", &source, &source_len, &small)) {