diff mbox series

[PULL,13/18] test-vmstate: remove unnecessary code in match_interval_mapping_node

Message ID 20200911193330.1148942-14-laurent@vivier.eu
State New
Headers show
Series [PULL,01/18] hw/mips/fuloong2e: Convert pointless error message to an assert() | expand

Commit Message

Laurent Vivier Sept. 11, 2020, 7:33 p.m. UTC
From: Pan Nengyuan <pannengyuan@huawei.com>

'str' is not used in match_interval_mapping_node(), remove it.

Signed-off-by: Pan Nengyuan <pannengyuan@huawei.com>
Reviewed-by: Li Qiang <liq3ea@gmail.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20200910023818.11880-1-pannengyuan@huawei.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
---
 tests/test-vmstate.c | 3 ---
 1 file changed, 3 deletions(-)
diff mbox series

Patch

diff --git a/tests/test-vmstate.c b/tests/test-vmstate.c
index f8de709a0b2b..1c763015d03c 100644
--- a/tests/test-vmstate.c
+++ b/tests/test-vmstate.c
@@ -1055,9 +1055,6 @@  static gboolean match_interval_mapping_node(gpointer key,
     TestGTreeMapping *map_a, *map_b;
     TestGTreeInterval *a, *b;
     struct match_node_data *d = (struct match_node_data *)data;
-    char *str = g_strdup_printf("dest");
-
-    g_free(str);
     a = (TestGTreeInterval *)key;
     b = (TestGTreeInterval *)d->key;