[PATCH] shell32: Return S_OK from IShellLink::SetFlags() stub.

Dmitry Timoshkov dmitry at baikal.ru
Tue Dec 22 08:38:00 CST 2020


Signed-off-by: Dmitry Timoshkov <dmitry at baikal.ru>
---
 dlls/shell32/shelllink.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/shell32/shelllink.c b/dlls/shell32/shelllink.c
index 5b044d4be1..46d9bc994f 100644
--- a/dlls/shell32/shelllink.c
+++ b/dlls/shell32/shelllink.c
@@ -2297,7 +2297,7 @@ static HRESULT WINAPI
 ShellLink_SetFlags( IShellLinkDataList* iface, DWORD dwFlags )
 {
     FIXME("(%p)->(%u): stub\n", iface, dwFlags);
-    return E_NOTIMPL;
+    return S_OK;
 }
 
 static const IShellLinkDataListVtbl dlvt =
-- 
2.29.2




More information about the wine-devel mailing list