no need to set *stop on fill_region() error return

This commit is contained in:
Benjamin Gilbert 2011-11-27 15:09:04 -05:00
parent 73c3ea38d2
commit 94912aba27
1 changed files with 1 additions and 3 deletions

View File

@ -8,6 +8,7 @@
* - initial version * - initial version
* 27/11/11 * 27/11/11
* - fix black background in transparent areas * - fix black background in transparent areas
* - no need to set *stop on fill_region() error return
*/ */
/* /*
@ -122,9 +123,6 @@ fill_region( VipsRegion *out, void *seq, void *_rslide, void *unused,
if( error ) { if( error ) {
vips_error( "im_openslide2vips", _( "reading region: %s" ), vips_error( "im_openslide2vips", _( "reading region: %s" ),
error ); error );
/* OpenSlide handle is now in error state.
*/
*stop = TRUE;
return( -1 ); return( -1 );
} }
return( 0 ); return( 0 );