From: Antony Dovgal Date: Tue, 1 Jul 2008 07:36:59 +0000 (+0000) Subject: on the contrary, string length is int X-Git-Tag: php-5.3.0alpha1~554 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0729dab2aed4e73ffba2834abaf4dbaa4f951258;p=php on the contrary, string length is int --- diff --git a/ext/bz2/bz2.c b/ext/bz2/bz2.c index 4abed85acf..e65d34d93c 100644 --- a/ext/bz2/bz2.c +++ b/ext/bz2/bz2.c @@ -366,7 +366,7 @@ static PHP_FUNCTION(bzopen) { zval **file; /* The file to open */ char *mode; /* The mode to open the stream with */ - long mode_len; + int mode_len; BZFILE *bz; /* The compressed file stream */ php_stream *stream = NULL; @@ -488,7 +488,7 @@ static PHP_FUNCTION(bzcompress) block_size = 4, /* Block size for compression algorithm */ work_factor = 0, /* Work factor for compression algorithm */ argc; /* Argument count */ - long source_len; /* Length of the source data */ + int source_len; /* Length of the source data */ unsigned int dest_len; /* Length of the destination buffer */ argc = ZEND_NUM_ARGS();