Skip to content
Snippets Groups Projects
Commit 3735adb6 authored by Marek Vavrusa's avatar Marek Vavrusa
Browse files

Temporarily disabled assert.

refs #1215
parent e011a5e3
No related branches found
No related tags found
No related merge requests found
......@@ -805,7 +805,8 @@ void ck_destroy_table(ck_hash_table_t **table, void (*dtor_value)(void *value),
while (item != NULL) {
// disconnect the item
(*table)->stash = item->next;
assert(item->item != NULL);
/*! \todo Investigate this. */
// 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