ole32: Check for pcbSize parameter of CompositeMonikerImpl_GetSizeMax being NULL, rather than non-NULL.

oldstable
Robert Shearman 2006-04-07 11:20:09 +01:00 committed by Alexandre Julliard
parent ff5efc2779
commit 3a2e18c99c
1 changed files with 1 additions and 1 deletions

View File

@ -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;