diff options
| author | Marc-André Lureau | 2017-02-05 21:07:30 +0100 |
|---|---|---|
| committer | Marc-André Lureau | 2017-03-01 08:51:05 +0100 |
| commit | 6afff1ffa36909b164847ff276cc9cb575058f4c (patch) | |
| tree | de7e94b188310a7fa6d59ba512786b624484957d | |
| parent | pc: pcihp: avoid adding ACPI_PCIHP_PROP_BSEL twice (diff) | |
| download | qemu-6afff1ffa36909b164847ff276cc9cb575058f4c.tar.gz qemu-6afff1ffa36909b164847ff276cc9cb575058f4c.tar.xz qemu-6afff1ffa36909b164847ff276cc9cb575058f4c.zip | |
tests: fix eepro100-test leak
Spotted by ASAN.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Stefan Weil <sw@weilnetz.de>
| -rw-r--r-- | tests/eepro100-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/eepro100-test.c b/tests/eepro100-test.c index ed23258b0f..bdc8a67d57 100644 --- a/tests/eepro100-test.c +++ b/tests/eepro100-test.c @@ -54,6 +54,7 @@ int main(int argc, char **argv) path = g_strdup_printf("eepro100/%s", models[i]); qtest_add_data_func(path, models[i], test_device); + g_free(path); } return g_test_run(); |
