mmdevapi: Fix reference leak in tests.

Reported by Dan Kegel
oldstable
Maarten Lankhorst 2010-01-05 22:35:18 +01:00 committed by Alexandre Julliard
parent ef0a0d8b86
commit 7615ec0700
1 changed files with 11 additions and 7 deletions

View File

@ -82,14 +82,18 @@ static void test_collection(IMMDeviceEnumerator *mme, IMMDeviceCollection *col)
ok(hr == E_INVALIDARG, "Asking for too high device returned 0x%08x\n", hr);
ok(dev == NULL, "Returned non-null device\n");
if (!numdev) return;
hr = IMMDeviceCollection_Item(col, 0, NULL);
ok(hr == E_POINTER, "Query with null pointer returned 0x%08x\n", hr);
if (numdev)
{
hr = IMMDeviceCollection_Item(col, 0, NULL);
ok(hr == E_POINTER, "Query with null pointer returned 0x%08x\n", hr);
hr = IMMDeviceCollection_Item(col, 0, &dev);
ok(hr == S_OK, "Valid Item returned 0x%08x\n", hr);
ok(dev != NULL, "Device is null!\n");
if (dev) IUnknown_Release(dev);
hr = IMMDeviceCollection_Item(col, 0, &dev);
ok(hr == S_OK, "Valid Item returned 0x%08x\n", hr);
ok(dev != NULL, "Device is null!\n");
if (dev)
IUnknown_Release(dev);
}
IUnknown_Release(col);
}
/* Only do parameter tests here, the actual MMDevice testing should be a separate test */