mirror of https://github.com/xemu-project/xemu.git
tests/fuzz: fix warning
../tests/qtest/fuzz/generic_fuzz.c:746:17: warning: variable 'name' set but not used [-Wunused-but-set-variable] Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20220420132624.2439741-42-marcandre.lureau@redhat.com>
This commit is contained in:
parent
c267d750d8
commit
d30c08dfe4
|
@ -743,14 +743,12 @@ static void usage(void)
|
||||||
|
|
||||||
static int locate_fuzz_memory_regions(Object *child, void *opaque)
|
static int locate_fuzz_memory_regions(Object *child, void *opaque)
|
||||||
{
|
{
|
||||||
const char *name;
|
|
||||||
MemoryRegion *mr;
|
MemoryRegion *mr;
|
||||||
if (object_dynamic_cast(child, TYPE_MEMORY_REGION)) {
|
if (object_dynamic_cast(child, TYPE_MEMORY_REGION)) {
|
||||||
mr = MEMORY_REGION(child);
|
mr = MEMORY_REGION(child);
|
||||||
if ((memory_region_is_ram(mr) ||
|
if ((memory_region_is_ram(mr) ||
|
||||||
memory_region_is_ram_device(mr) ||
|
memory_region_is_ram_device(mr) ||
|
||||||
memory_region_is_rom(mr)) == false) {
|
memory_region_is_rom(mr)) == false) {
|
||||||
name = object_get_canonical_path_component(child);
|
|
||||||
/*
|
/*
|
||||||
* We don't want duplicate pointers to the same MemoryRegion, so
|
* We don't want duplicate pointers to the same MemoryRegion, so
|
||||||
* try to remove copies of the pointer, before adding it.
|
* try to remove copies of the pointer, before adding it.
|
||||||
|
|
Loading…
Reference in New Issue