]> git.proxmox.com Git - mirror_qemu.git/commit
migration/block-dirty-bitmap: fix uninitialized variable warning
authorChen Qun <kuhn.chenqun@huawei.com>
Wed, 14 Oct 2020 11:44:30 +0000 (19:44 +0800)
committerEric Blake <eblake@redhat.com>
Mon, 26 Oct 2020 11:56:24 +0000 (06:56 -0500)
commita024890a64085d3d37ad7eda164775251285c14c
tree2345fa9bf8d43c5904e4820e5cd7398aeeeb83c5
parented7b70c27b5c11ff4800e608d301cd7a36b81c5e
migration/block-dirty-bitmap: fix uninitialized variable warning

A default value is provided for the variable 'bitmap_name' to avoid
a compiler warning.

The compiler showed the warning:
migration/block-dirty-bitmap.c:1090:13: warning: ‘bitmap_name’
may be used uninitialized in this function [-Wmaybe-uninitialized]
       g_strlcpy(s->bitmap_name, bitmap_name, sizeof(s->bitmap_name));
       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Reported-by: Euler Robot <euler.robot@huawei.com>
Signed-off-by: Chen Qun <kuhn.chenqun@huawei.com>
Message-Id: <20201014114430.1898684-1-kuhn.chenqun@huawei.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
[eblake: commit message grammar tweaks]
Signed-off-by: Eric Blake <eblake@redhat.com>
migration/block-dirty-bitmap.c