Commit 45553a97 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

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

parent 6bf349fc
......@@ -416,7 +416,7 @@ static HRESULT WINAPI rowpos_cp_Advise(IConnectionPoint *iface, IUnknown *unksin
}
This->sinks[i] = sink;
if (cookie) *cookie = i + 1;
*cookie = i + 1;
return S_OK;
}
......
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