[PATCH 3/6] shell32: Forward IExtractIconA::Release to IExtractIconW:Release

Michael Stefaniuc mstefani at redhat.de
Fri Jan 27 07:30:58 CST 2012


---
Just splitting the fix out of the COM cleanup patch.



 dlls/shell32/folders.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/shell32/folders.c b/dlls/shell32/folders.c
index bf4c255..c829c3a 100644
--- a/dlls/shell32/folders.c
+++ b/dlls/shell32/folders.c
@@ -440,7 +440,7 @@ static ULONG WINAPI IExtractIconA_fnRelease(IExtractIconA * iface)
 {
 	IExtractIconW *This = impl_from_IExtractIconA(iface);
 
-	return IExtractIconW_AddRef(This);
+	return IExtractIconW_Release(This);
 }
 /**************************************************************************
 *  IExtractIconA_GetIconLocation
-- 
1.7.4.4



More information about the wine-patches mailing list