Module: wine Branch: master Commit: 725db4d19d168749cc39c294a7e5fa84db6518a0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=725db4d19d168749cc39c294a7... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Fri Jan 27 14:30:58 2012 +0100 shell32: Forward IExtractIconA::Release to IExtractIconW:Release. --- 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