hash.c: remove a dead store

* src/hash.c (virHashFree): Remove useless assignment to inside_table.
This commit is contained in:
Jim Meyering 2009-09-04 11:01:00 +02:00
parent f2a46c848c
commit 767c5bbe01

View File

@ -231,7 +231,6 @@ virHashFree(virHashTablePtr table, virHashDeallocator f)
inside_table = 0;
iter = next;
}
inside_table = 0;
}
VIR_FREE(table->table);
}