Module: wine Branch: master Commit: 9583bd004b7ad2a383b6ff4295ece4da8d28cbe8 URL: https://source.winehq.org/git/wine.git/?a=commit;h=9583bd004b7ad2a383b6ff429...
Author: Michael Stefaniuc mstefani@winehq.org Date: Tue Mar 26 20:41:39 2019 +0100
shell32: Avoid using the comma operator.
Signed-off-by: Michael Stefaniuc mstefani@winehq.org Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/shell32/dataobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/shell32/dataobject.c b/dlls/shell32/dataobject.c index ab72055..3e718a3 100644 --- a/dlls/shell32/dataobject.c +++ b/dlls/shell32/dataobject.c @@ -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;