aboutsummaryrefslogtreecommitdiff
path: root/src/hash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash.h')
-rw-r--r--src/hash.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/hash.h b/src/hash.h
index cb3001a..1cb539b 100644
--- a/src/hash.h
+++ b/src/hash.h
@@ -1115,7 +1115,8 @@ namespace Bu
1115 // Delete all of the old data 1115 // Delete all of the old data
1116 for( uint32_t j = 0; j < nOldCapacity; j++ ) 1116 for( uint32_t j = 0; j < nOldCapacity; j++ )
1117 { 1117 {
1118 if( (bOldFilled[j/32]&(1<<(j%32)))!=0 ) 1118 if( (bOldFilled[j/32]&(1<<(j%32)))!=0 &&
1119 (bOldDeleted[j/32]&(1<<(j%32)))==0 )
1119 { 1120 {
1120 va.destroy( &aOldValues[j] ); 1121 va.destroy( &aOldValues[j] );
1121 ka.destroy( &aOldKeys[j] ); 1122 ka.destroy( &aOldKeys[j] );