This commit is contained in:
Neil 2023-04-21 20:57:07 -07:00
parent e05a82a860
commit 343656e58a
1 changed files with 2 additions and 1 deletions

View File

@ -748,7 +748,8 @@ static int N_(table_remove)(struct N_(table) *const table,
const PN_(key) key) {
struct PN_(bucket) *current;
PN_(uint) c, p = TABLE_NULL, n, hash = N_(hash)(key);
if(!table || !table->size) return 0; assert(table->buckets);
if(!table || !table->size) return 0;
assert(table->buckets);
/* Find item and keep track of previous. */
current = table->buckets + (c = PN_(chain_head)(table, hash));
if((n = current->next) == TABLE_NULL /* No entry here. */