Fixed crash on double free when exiting.
The key of hash table item was deallocated twice - once as the key and once in the zone node (the value). Fixed by adding parameters to ck_destroy_table() and ck_remove_item() which tells if the key and value should be deallocated (in case of value a pointer to destructor is passed). Changes to other files to acommodate this change.
Showing
- src/hash/cuckoo-hash-table.c 23 additions, 9 deletionssrc/hash/cuckoo-hash-table.c
- src/hash/cuckoo-hash-table.h 21 additions, 21 deletionssrc/hash/cuckoo-hash-table.h
- src/tests/cuckoo-test.c 14 additions, 14 deletionssrc/tests/cuckoo-test.c
- src/zone/zone-data-structure.c 4 additions, 4 deletionssrc/zone/zone-data-structure.c
- src/zone/zone-data-structure.h 2 additions, 0 deletionssrc/zone/zone-data-structure.h
- src/zone/zone-database.c 5 additions, 1 deletionsrc/zone/zone-database.c
- src/zone/zone-node.h 7 additions, 1 deletionsrc/zone/zone-node.h
Loading
Please register or sign in to comment