remove an unneeded check

This commit is contained in:
Bill Currie 2001-10-26 03:12:31 +00:00
parent 04e4da654a
commit 6bbb9a75a3

View file

@ -281,8 +281,6 @@ Hash_GetList (hashtab_t *tab)
struct hashlink_s *lnk; struct hashlink_s *lnk;
for (lnk = tab->tab[ind]; lnk; lnk = lnk->next) { for (lnk = tab->tab[ind]; lnk; lnk = lnk->next) {
if (l - list == tab->num_ele)
Sys_Error ("hash.c: internal error\n");
*l++ = lnk->data; *l++ = lnk->data;
} }
} }