From: Peter Maydell Date: Tue, 25 May 2021 13:44:56 +0000 (+0100) Subject: tests/qtest/pflash-cfi02-test: Avoid potential integer overflow X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=909e4a0826cde069555d90a9797590c5988d9b7e;p=qmiga%2Fqemu.git tests/qtest/pflash-cfi02-test: Avoid potential integer overflow Coverity points out that we calculate a 64-bit value using 32-bit arithmetic; add the cast to force the multiply to be done as 64-bits. (The overflow will never happen with the current test data.) Fixes: Coverity CID 1432320 Signed-off-by: Peter Maydell Reviewed-by: Philippe Mathieu-Daudé Reviewed-by: Stefan Berger Message-id: 20210525134458.6675-5-peter.maydell@linaro.org --- diff --git a/tests/qtest/pflash-cfi02-test.c b/tests/qtest/pflash-cfi02-test.c index 60db81a3a2..6168edc821 100644 --- a/tests/qtest/pflash-cfi02-test.c +++ b/tests/qtest/pflash-cfi02-test.c @@ -406,7 +406,7 @@ static void test_geometry(const void *opaque) for (int region = 0; region < nb_erase_regions; ++region) { for (uint32_t i = 0; i < c->nb_blocs[region]; ++i) { - uint64_t byte_addr = i * c->sector_len[region]; + uint64_t byte_addr = (uint64_t)i * c->sector_len[region]; g_assert_cmphex(flash_read(c, byte_addr), ==, bank_mask(c)); } }