Merge 70c43bd436cc5b6da36f478f7bdb5b166a3d0fc8 into d43d358b044889b17501840ca60fadaa8bdb007d

This commit is contained in:
Tobias Frost 2021-02-10 12:33:05 +01:00 committed by GitHub
commit b56ab80bba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,7 @@ int entry_buffer::underflow()
{ {
if(gptr() == egptr()) if(gptr() == egptr())
{ {
size_t _buff_size = archive_read_data(_archive, _buff, _buff_max_size); ssize_t _buff_size = archive_read_data(_archive, _buff, _buff_max_size);
if( _buff_size < 0 ) if( _buff_size < 0 )
{ {