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:
Michael Stefaniuc 2019-03-26 20:41:39 +01:00 committed by Alexandre Julliard
parent 02e4210265
commit 9583bd004b
1 changed files with 1 additions and 1 deletions

View File

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