Michael Stefaniuc : shell32: Avoid using the comma operator.

Alexandre Julliard julliard at winehq.org
Tue Mar 26 16:43:18 CDT 2019


Module: wine
Branch: master
Commit: 9583bd004b7ad2a383b6ff4295ece4da8d28cbe8
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=9583bd004b7ad2a383b6ff4295ece4da8d28cbe8

Author: Michael Stefaniuc <mstefani at winehq.org>
Date:   Tue Mar 26 20:41:39 2019 +0100

shell32: Avoid using the comma operator.

Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>
Signed-off-by: Alexandre Julliard <julliard at 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;




More information about the wine-cvs mailing list