create executable function which identifies and loads a cache if available
This commit is contained in:
@@ -55,7 +55,9 @@ void resize_hashmap(struct hashmap *t) {
|
||||
while (temp) {
|
||||
hashmap_insert(t, temp->hash, temp->key, temp->val,
|
||||
temp->order); // Will increment count
|
||||
struct node *temp_temp = temp;
|
||||
temp = temp->next;
|
||||
free(temp_temp);
|
||||
}
|
||||
}
|
||||
free(old_list);
|
||||
|
||||
Reference in New Issue
Block a user