Merge pull request #122 from lovell/op-cache-trim-move

Make cache limits 'hard' rather than 'soft' using trim after add, not before
This commit is contained in:
John Cupitt 2014-05-12 22:59:55 +01:00
commit 8f78aaa9f7
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 );
}