tests: fix i440fx-test leaks
Spotted by ASAN. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
8829e16f5e
commit
1bab33ab4a
|
@ -134,6 +134,8 @@ static void test_i440fx_defaults(gconstpointer opaque)
|
||||||
/* 3.2.26 */
|
/* 3.2.26 */
|
||||||
g_assert_cmpint(qpci_config_readb(dev, 0x93), ==, 0x00); /* TRC */
|
g_assert_cmpint(qpci_config_readb(dev, 0x93), ==, 0x00); /* TRC */
|
||||||
|
|
||||||
|
g_free(dev);
|
||||||
|
qpci_free_pc(bus);
|
||||||
qtest_end();
|
qtest_end();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -270,6 +272,9 @@ static void test_i440fx_pam(gconstpointer opaque)
|
||||||
/* Verify the area is not our new mask */
|
/* Verify the area is not our new mask */
|
||||||
g_assert(!verify_area(pam_area[i].start, pam_area[i].end, 0x82));
|
g_assert(!verify_area(pam_area[i].start, pam_area[i].end, 0x82));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
g_free(dev);
|
||||||
|
qpci_free_pc(bus);
|
||||||
qtest_end();
|
qtest_end();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue