Remove invalid assertion

git-svn: trunk@2104
remotes/push_mirror/metadata
Nigel Horne 19 years ago
parent 821dd71e8a
commit 11d59f6d01
  1. 7
      clamav-devel/ChangeLog
  2. 2
      clamav-devel/libclamav/table.c

@ -1,3 +1,8 @@
Wed Jul 19 22:50:11 BST 2006 (njh)
----------------------------------
* libclamav/table.c: Removed code sanity check that is now invalid since
a table can now contain deleted nodes
Wed Jul 19 13:55:10 BST 2006 (njh)
----------------------------------
* libclamav/table.c, clamav-milter: General tidy
@ -5,7 +10,7 @@ Wed Jul 19 13:55:10 BST 2006 (njh)
Wed Jul 19 10:42:32 BST 2006 (njh)
----------------------------------
* clamav-milter: Use LogClean from clamd.conf, removed --dont-log-clean
Started to use logg() functions from output.o
Started to use logg() functions from output.o
Improved load balancing
Tue Jul 18 17:54:42 CEST 2006 (tk)

@ -55,8 +55,6 @@ tableDestroy(table_t *table)
while(tableItem) {
tableEntry *tableNext = tableItem->next;
assert(tableItem->key != NULL);
if(tableItem->key)
free(tableItem->key);
free(tableItem);

Loading…
Cancel
Save