Merge branch '7.40'

This commit is contained in:
John Cupitt 2014-08-28 17:19:58 +01:00
commit 43eddbef7a
3 changed files with 8 additions and 1 deletions

View File

@ -4,9 +4,12 @@
- add vips_resize()
21/8/14 started 7.40.7
- fix matlab load
- width and height were swapped in matlab load
- set interpretation more carefully on matlab load
- fix memleak in tilecache [Lovell]
- fix memleak in VipsArray [Lovell]
- fix memleak in webp load from buffer [Lovell]
- fix memleak in png save to buffer [Lovell]
12/8/14 started 7.40.6
- more doc fixes

View File

@ -211,6 +211,8 @@ vips_foreign_save_png_buffer_build( VipsObject *object )
g_object_set( object, "buffer", area, NULL );
vips_area_unref( area );
return( 0 );
}

View File

@ -298,6 +298,8 @@ vips__webp_read_buffer( void *buf, size_t len, VipsImage *out )
if( read_image( read, out ) )
return( -1 );
read_free( read );
return( 0 );
}