Merge remote-tracking branch 'origin/7.38'

This commit is contained in:
John Cupitt 2014-03-30 15:28:40 +01:00
commit 252897dc83
2 changed files with 4 additions and 1 deletions

View File

@ -17,6 +17,9 @@
6/3/14 started 7.38.6 6/3/14 started 7.38.6
- grey ramp minimum was wrong - grey ramp minimum was wrong
- vipsthumbnail --crop could fail for very non-square images, thanks
Alessandro
- fix a crash in vips_rawsave(), thanks Andrea
24/2/14 started 7.38.5 24/2/14 started 7.38.5
- jpeg load from buffer could write to input, thanks Lovell - jpeg load from buffer could write to input, thanks Lovell

View File

@ -174,7 +174,7 @@ vips_rawsave( VipsImage *in, const char *filename, ... )
int result; int result;
va_start( ap, filename ); va_start( ap, filename );
result = vips_call_split( "rawsave", ap, filename ); result = vips_call_split( "rawsave", ap, in, filename );
va_end( ap ); va_end( ap );
return( result ); return( result );