revert a test change for coverity
This commit is contained in:
parent
e6a8485d70
commit
d3351c77a3
@ -1,7 +1,6 @@
|
|||||||
# libvips : an image processing library
|
# libvips : an image processing library
|
||||||
|
|
||||||
[](http://travis-ci.org/jcupitt/libvips)
|
[](http://travis-ci.org/jcupitt/libvips)
|
||||||
|
|
||||||
[](https://scan.coverity.com/projects/jcupitt-libvips)
|
[](https://scan.coverity.com/projects/jcupitt-libvips)
|
||||||
|
|
||||||
libvips is a 2D image processing library. Compared to
|
libvips is a 2D image processing library. Compared to
|
||||||
|
@ -424,7 +424,7 @@ vips__formatalike( VipsImage *in1, VipsImage *in2,
|
|||||||
in[0] = in1;
|
in[0] = in1;
|
||||||
in[1] = in2;
|
in[1] = in2;
|
||||||
|
|
||||||
if( vips__formatalike_vec( in, &out[0], 2 ) )
|
if( vips__formatalike_vec( in, out, 2 ) )
|
||||||
return( -1 );
|
return( -1 );
|
||||||
|
|
||||||
*out1 = out[0];
|
*out1 = out[0];
|
||||||
@ -443,7 +443,7 @@ vips__sizealike( VipsImage *in1, VipsImage *in2,
|
|||||||
in[0] = in1;
|
in[0] = in1;
|
||||||
in[1] = in2;
|
in[1] = in2;
|
||||||
|
|
||||||
if( vips__sizealike_vec( in, &out[0], 2 ) )
|
if( vips__sizealike_vec( in, out, 2 ) )
|
||||||
return( -1 );
|
return( -1 );
|
||||||
|
|
||||||
*out1 = out[0];
|
*out1 = out[0];
|
||||||
@ -462,7 +462,7 @@ vips__bandalike( const char *domain,
|
|||||||
in[0] = in1;
|
in[0] = in1;
|
||||||
in[1] = in2;
|
in[1] = in2;
|
||||||
|
|
||||||
if( vips__bandalike_vec( domain, in, &out[0], 2, 1 ) )
|
if( vips__bandalike_vec( domain, in, out, 2, 1 ) )
|
||||||
return( -1 );
|
return( -1 );
|
||||||
|
|
||||||
*out1 = out[0];
|
*out1 = out[0];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user