From: Jim Meyering Date: Fri, 4 Sep 2009 09:01:00 +0000 (+0200) Subject: hash.c: remove a dead store X-Git-Tag: v0.7.1~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=767c5bbe01b1c0a7e45dbf390be34584808bc527;p=thirdparty%2Flibvirt.git hash.c: remove a dead store * src/hash.c (virHashFree): Remove useless assignment to inside_table. --- 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); }