diff options
author | Emanuele Giuseppe Esposito <eesposit@redhat.com> | 2021-03-19 12:22:18 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2021-03-20 06:17:09 +0100 |
commit | d8b2e5639a08155e6dad7d5befeb12c160c8118e (patch) | |
tree | 6de2876ef5340e331c121bcf57e19602c7a1d095 /tests/unit/test-block-iothread.c | |
parent | 8db5c3e216d3a9173cede1ff1a5f40cfe6bb0693 (diff) | |
download | qemu-d8b2e5639a08155e6dad7d5befeb12c160c8118e.zip qemu-d8b2e5639a08155e6dad7d5befeb12c160c8118e.tar.gz qemu-d8b2e5639a08155e6dad7d5befeb12c160c8118e.tar.bz2 |
tests/unit/test-block-iothread: fix maybe-uninitialized error on GCC 11
When building qemu with GCC 11, test-block-iothread produces the following
warning:
../tests/unit/test-block-iothread.c:148:11: error: ‘buf’ may be used
uninitialized [-Werror=maybe-uninitialized]
This is caused by buf[512] left uninitialized and passed to
bdrv_save_vmstate() that expects a const uint8_t *, so the compiler
assumes it will be read and expects the parameter to be initialized.
Signed-off-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20210319112218.49609-1-eesposit@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/unit/test-block-iothread.c')
-rw-r--r-- | tests/unit/test-block-iothread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/test-block-iothread.c b/tests/unit/test-block-iothread.c index 3f866a3..8cf172c 100644 --- a/tests/unit/test-block-iothread.c +++ b/tests/unit/test-block-iothread.c @@ -89,7 +89,7 @@ static void test_sync_op_pread(BdrvChild *c) static void test_sync_op_pwrite(BdrvChild *c) { - uint8_t buf[512]; + uint8_t buf[512] = { 0 }; int ret; /* Success */ @@ -117,7 +117,7 @@ static void test_sync_op_blk_pread(BlockBackend *blk) static void test_sync_op_blk_pwrite(BlockBackend *blk) { - uint8_t buf[512]; + uint8_t buf[512] = { 0 }; int ret; /* Success */ @@ -141,7 +141,7 @@ static void test_sync_op_load_vmstate(BdrvChild *c) static void test_sync_op_save_vmstate(BdrvChild *c) { - uint8_t buf[512]; + uint8_t buf[512] = { 0 }; int ret; /* Error: Driver does not support snapshots */ |