Commit 3a2e18c9 authored by Robert Shearman's avatar Robert Shearman Committed by Alexandre Julliard

ole32: Check for pcbSize parameter of CompositeMonikerImpl_GetSizeMax being…

ole32: Check for pcbSize parameter of CompositeMonikerImpl_GetSizeMax being NULL, rather than non-NULL.
parent ff5efc27
......@@ -333,7 +333,7 @@ CompositeMonikerImpl_GetSizeMax(IMoniker* iface,ULARGE_INTEGER* pcbSize)
TRACE("(%p,%p)\n",iface,pcbSize);
if (pcbSize!=NULL)
if (!pcbSize)
return E_POINTER;
pcbSize->u.LowPart =0;
......
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