From 767c5bbe01b1c0a7e45dbf390be34584808bc527 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 4 Sep 2009 11:01:00 +0200 Subject: [PATCH] hash.c: remove a dead store * src/hash.c (virHashFree): Remove useless assignment to inside_table. --- src/hash.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hash.c b/src/hash.c index 9308c0c2ba..45c5747ba9 100644 --- a/src/hash.c +++ b/src/hash.c @@ -231,7 +231,6 @@ virHashFree(virHashTablePtr table, virHashDeallocator f) inside_table = 0; iter = next; } - inside_table = 0; } VIR_FREE(table->table); } -- 2.47.2