shell32: Avoid using the comma operator.
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
02e4210265
commit
9583bd004b
|
@ -274,7 +274,7 @@ static ULONG WINAPI IDataObject_fnRelease(IDataObject *iface)
|
|||
{
|
||||
TRACE(" destroying IDataObject(%p)\n",This);
|
||||
_ILFreeaPidl(This->apidl, This->cidl);
|
||||
ILFree(This->pidl),
|
||||
ILFree(This->pidl);
|
||||
heap_free(This);
|
||||
}
|
||||
return refCount;
|
||||
|
|
Loading…
Reference in New Issue