[PATCH] shell32: Avoid using the comma operator

Michael Stefaniuc mstefani at winehq.org
Tue Mar 26 14:41:39 CDT 2019


Signed-off-by: Michael Stefaniuc <mstefani 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 ab720559f6..6d30f684e0 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;
-- 
2.20.1




More information about the wine-devel mailing list