Commit 820c7731 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

winepulse: Use FAILED() instead of non-zero result check.

parent fae276c4
......@@ -344,7 +344,7 @@ HRESULT WINAPI AUDDRV_GetAudioEndpoint(GUID *guid, IMMDevice *dev, IAudioClient
This->parent = dev;
hr = CoCreateFreeThreadedMarshaler((IUnknown*)&This->IAudioClient3_iface, &This->marshal);
if (hr) {
if (FAILED(hr)) {
HeapFree(GetProcessHeap(), 0, This);
return hr;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment