]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
hash.c: remove a dead store
authorJim Meyering <meyering@redhat.com>
Fri, 4 Sep 2009 09:01:00 +0000 (11:01 +0200)
committerJim Meyering <meyering@redhat.com>
Fri, 4 Sep 2009 16:59:29 +0000 (18:59 +0200)
* src/hash.c (virHashFree): Remove useless assignment to inside_table.

src/hash.c

index 9308c0c2ba08e47c62524e887359d63286b45f0c..45c5747ba996a79bafcff4a01ec6eede7d86d973 100644 (file)
@@ -231,7 +231,6 @@ virHashFree(virHashTablePtr table, virHashDeallocator f)
                 inside_table = 0;
                 iter = next;
             }
-            inside_table = 0;
         }
         VIR_FREE(table->table);
     }