more robust vips file read
This commit is contained in:
parent
92a6ff19a1
commit
af34f8f3ef
@ -156,7 +156,7 @@ vips_buffer_dump_all( void )
|
||||
static void
|
||||
vips_buffer_free( VipsBuffer *buffer )
|
||||
{
|
||||
vips_tracked_free( buffer->buf );
|
||||
VIPS_FREEF( vips_tracked_free, buffer->buf );
|
||||
buffer->bsize = 0;
|
||||
g_free( buffer );
|
||||
|
||||
|
@ -300,6 +300,7 @@ wbuffer_position( WriteBuffer *wbuffer, int top, int height )
|
||||
|
||||
/* This should be an exclusive buffer, hopefully.
|
||||
*/
|
||||
if( !result )
|
||||
g_assert( !wbuffer->region->buffer->done );
|
||||
|
||||
return( result );
|
||||
|
@ -792,7 +792,7 @@ vips__write_extension_block( VipsImage *im, void *buf, int size )
|
||||
psize = image_pixel_length( im );
|
||||
if( (length = vips_file_length( im->fd )) == -1 )
|
||||
return( -1 );
|
||||
if( length - psize < 0 ) {
|
||||
if( length < psize ) {
|
||||
vips_error( "VipsImage", "%s", _( "file has been truncated" ) );
|
||||
return( -1 );
|
||||
}
|
||||
@ -894,7 +894,9 @@ vips_image_open_input( VipsImage *image )
|
||||
return( -1 );
|
||||
}
|
||||
|
||||
/* Predict and check the file size.
|
||||
/* Predict and check the file size. Only issue a warning, we want to be
|
||||
* able to read all the header fields we can, even if the actual data
|
||||
* isn't there.
|
||||
*/
|
||||
psize = image_pixel_length( image );
|
||||
if( (rsize = vips_file_length( image->fd )) == -1 )
|
||||
|
Loading…
Reference in New Issue
Block a user