diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2017-02-07 15:47:39 +0400 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2017-03-01 11:51:29 +0400 |
commit | 62030ed135e4cfb960cb626510cbb3ea77bb9ef9 (patch) | |
tree | a64cf3de98fe919ccfc46d50c864ba2fd496905e /tests/usb-hcd-uhci-test.c | |
parent | d3510ff9d7e78c89ee41175082ae5390e6e5b285 (diff) |
tests: fix usb-test leaks
Fix the usb tests leaks.
Spotted by ASAN.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'tests/usb-hcd-uhci-test.c')
-rw-r--r-- | tests/usb-hcd-uhci-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/usb-hcd-uhci-test.c b/tests/usb-hcd-uhci-test.c index e956b9ccb7..f25bae5e6c 100644 --- a/tests/usb-hcd-uhci-test.c +++ b/tests/usb-hcd-uhci-test.c @@ -28,6 +28,7 @@ static void test_port(int port) g_assert(port > 0); qusb_pci_init_one(qs->pcibus, &uhci, QPCI_DEVFN(0x1d, 0), 4); uhci_port_test(&uhci, port - 1, UHCI_PORT_CCS); + uhci_deinit(&uhci); } static void test_port_1(void) |