oledb32: Remove redundant not-NULL check (coccinellery).

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2019-02-21 20:35:39 +01:00 committed by Alexandre Julliard
parent 6bf349fc7c
commit 45553a97b0
1 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ static HRESULT WINAPI rowpos_cp_Advise(IConnectionPoint *iface, IUnknown *unksin
} }
This->sinks[i] = sink; This->sinks[i] = sink;
if (cookie) *cookie = i + 1; *cookie = i + 1;
return S_OK; return S_OK;
} }