Make cache limits 'hard' rather than 'soft' using trim after add, not before

This commit is contained in:
Lovell Fuller 2014-04-27 20:31:43 +01:00
parent 7303261a31
commit a1b3820eb2
1 changed files with 1 additions and 2 deletions

View File

@ -688,8 +688,6 @@ vips_cache_operation_buildp( VipsOperation **operation )
vips_object_print_dump( VIPS_OBJECT( *operation ) );
#endif /*VIPS_DEBUG*/
vips_cache_trim();
g_mutex_lock( vips_cache_lock );
if( (hit = g_hash_table_lookup( vips_cache_table, *operation )) ) {
@ -735,6 +733,7 @@ vips_cache_operation_buildp( VipsOperation **operation )
g_mutex_unlock( vips_cache_lock );
}
vips_cache_trim();
return( 0 );
}