From dc89a6fba9898f52263ef38d13df0ac51d50b59b Mon Sep 17 00:00:00 2001 From: Dianne Skoll Date: Thu, 12 Dec 2024 10:12:50 -0500 Subject: [PATCH] Eliminate unnecessary test. --- src/hashtab.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/hashtab.c b/src/hashtab.c index 6b9f0f3e..d256756d 100644 --- a/src/hashtab.c +++ b/src/hashtab.c @@ -222,9 +222,6 @@ hash_table_resize(hash_table *t, int dir) /* Move everything from the old buckets into the new */ for (size_t i=0; ibuckets[i]) { - continue; - } void *p = t->buckets[i]; while(p) { struct hash_link *l = LINK(t, p);