Review comments: Release the enumerator to avoid a leak.

This commit is contained in:
Paul Adenot 2016-02-22 15:07:20 +01:00
Родитель 98d4eb3959
Коммит 30cff99dc9
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -946,8 +946,12 @@ HRESULT get_endpoint(IMMDevice ** device, LPCWSTR devid)
hr = enumerator->GetDevice(devid, device);
if (FAILED(hr)) {
LOG("Could not get device: %x\n", hr);
SafeRelease(enumerator);
return hr;
}
SafeRelease(enumerator);
return S_OK;
}