fix compiler warning

This commit is contained in:
John Cupitt 2019-12-22 15:04:07 +00:00
parent 0429a0080e
commit 0c217efdf3

View File

@ -2281,6 +2281,11 @@ vips_image_new_from_stream( VipsStreami *streami,
vips_area_unref( VIPS_AREA( blob ) );
}
else {
vips_error( "VipsImage",
"%s", _( "unable to load stream" ) );
result = -1;
}
if( result )
return( NULL );