Skip to content
Snippets Groups Projects
Commit fe3df81b authored by Jan Kadlec's avatar Jan Kadlec
Browse files

Re-enabled previously disabled assert in ck_table.

parent 11a1b827
No related branches found
No related tags found
No related merge requests found
......@@ -810,7 +810,7 @@ void ck_destroy_table(ck_hash_table_t **table, void (*dtor_value)(void *value),
// disconnect the item
(*table)->stash = item->next;
/*! \todo Investigate this. */
// assert(item->item != NULL);
assert(item->item != NULL);
if (dtor_value) {
dtor_value(item->item->value);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment