quartz: Remove an unused return variable (coccinelle).

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2019-03-12 21:19:18 +01:00 committed by Alexandre Julliard
parent c7e6fafa4c
commit 91b53147f1
1 changed files with 1 additions and 2 deletions

View File

@ -196,7 +196,6 @@ static HRESULT WINAPI BaseMemAllocator_SetProperties(IMemAllocator * iface, ALLO
static HRESULT WINAPI BaseMemAllocator_GetProperties(IMemAllocator * iface, ALLOCATOR_PROPERTIES *pProps)
{
BaseMemAllocator *This = impl_from_IMemAllocator(iface);
HRESULT hr = S_OK;
TRACE("(%p)->(%p)\n", This, pProps);
@ -206,7 +205,7 @@ static HRESULT WINAPI BaseMemAllocator_GetProperties(IMemAllocator * iface, ALLO
}
LeaveCriticalSection(This->pCritSect);
return hr;
return S_OK;
}
static HRESULT WINAPI BaseMemAllocator_Commit(IMemAllocator * iface)