From f7dcfac024246e2ad84ac35c617b95700377e00b Mon Sep 17 00:00:00 2001 From: Amit Shah Date: Wed, 13 Jan 2010 16:24:46 +0530 Subject: [PATCH] qcow2-refcount: remove dead assignment clang-analyzer points out a redundant assignment. Signed-off-by: Amit Shah Signed-off-by: Anthony Liguori --- block/qcow2-refcount.c | 1 - 1 file changed, 1 deletion(-) diff --git a/block/qcow2-refcount.c b/block/qcow2-refcount.c index 54b19f86dd..3a2d44a170 100644 --- a/block/qcow2-refcount.c +++ b/block/qcow2-refcount.c @@ -511,7 +511,6 @@ int qcow2_update_snapshot_refcount(BlockDriverState *bs, l2_table = NULL; l1_table = NULL; l1_size2 = l1_size * sizeof(uint64_t); - l1_allocated = 0; if (l1_table_offset != s->l1_table_offset) { if (l1_size2 != 0) { l1_table = qemu_mallocz(align_offset(l1_size2, 512));