On Mon, 7 Mar 2005, Markus Fischer 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 ?
Try it? :)
--Jani
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
