Adding upstream version 1.17~pre1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
15503a1dcd
commit
c230441360
17 changed files with 419 additions and 186 deletions
|
@ -60,8 +60,7 @@ long readblock( const int fd, uint8_t * const buf, const long size )
|
|||
errno = 0;
|
||||
while( sz < size )
|
||||
{
|
||||
const int psz = std::min( 65536L, size - sz );
|
||||
const int n = read( fd, buf + sz, psz );
|
||||
const int n = read( fd, buf + sz, std::min( 1L << 20, size - sz ) );
|
||||
if( n > 0 ) sz += n;
|
||||
else if( n == 0 ) break; // EOF
|
||||
else if( errno != EINTR ) break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue