mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-7.1'
* PHP-7.1: fix datatype
This commit is contained in:
commit
940731df04
1 changed files with 1 additions and 1 deletions
|
@ -568,7 +568,7 @@ PHPAPI void _php_stream_fill_read_buffer(php_stream *stream, size_t size)
|
|||
/* allocate a buffer for reading chunks */
|
||||
chunk_buf = emalloc(stream->chunk_size);
|
||||
|
||||
while (!stream->eof && !err_flag && (stream->writepos - stream->readpos < (off_t)size)) {
|
||||
while (!stream->eof && !err_flag && (stream->writepos - stream->readpos < (zend_off_t)size)) {
|
||||
size_t justread = 0;
|
||||
int flags;
|
||||
php_stream_bucket *bucket;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue