Hello Markus,
Monday, March 7, 2005, 3:20:57 PM, you wrote:
> Hi,
> Marcus Boerger wrote:
>> Modified files:
>> /php-src/ext/standard file.c
>> Log:
>> - Allow length 0 as default (e.g. skip param)
> [...]
>> if (len < 0) {
>> php_error_docref(NULL TSRMLS_CC,
>> E_WARNING, "Length parameter may not be negative");
>> RETURN_FALSE;
>> + } else if (len == 0) {
>> + len = -1;
>> }
> Does this fix http://bugs.php.net/bug.php?id=31192 ?
More or less. You have to set limit to 0.
--
Best regards,
Marcus mailto:[EMAIL PROTECTED]
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php