diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/inline-hashtab.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/inline-hashtab.h b/include/inline-hashtab.h index ad361cd1ed..c359161c54 100644 --- a/include/inline-hashtab.h +++ b/include/inline-hashtab.h @@ -142,8 +142,7 @@ htab_delete (struct hashtab *htab) int i; for (i = htab->size - 1; i >= 0; i--) - if (htab->entries[i]) - free (htab->entries[i]); + free (htab->entries[i]); if (htab->free) htab->free (htab->entries); |