<div dir="ltr"><pre style="background-color:rgb(255,255,255);color:rgb(0,0,0);font-family:"DejaVu Sans Mono"">From b5332ae42d5dade2d114dc3c9ff9180215d8021b Mon Sep 17 00:00:00 2001<br>From: Guillaume GILL <<a href="mailto:gillg02@petitchinois.net">gillg02@petitchinois.net</a>><br>Date: Mon, 9 Apr 2018 21:28:03 +0200<br>Subject: [PATCH] shell32: Avoid some exception when property Set and Commit in<br> shell32.dll<br><br>Fixes <a href="https://bugs.winehq.org/show_bug.cgi?id=44866">https://bugs.winehq.org/show_bug.cgi?id=44866</a><br><br>Signed-off-by: Guillaume GILL <<a href="mailto:gillg02@petitchinois.net">gillg02@petitchinois.net</a>><br>---<br> dlls/shell32/shelllink.c | 4 ++--<br> 1 file changed, 2 insertions(+), 2 deletions(-)<br><br>diff --git a/dlls/shell32/shelllink.c b/dlls/shell32/shelllink.c<br>index 6dca9ac..07c83d1 100644<br>--- a/dlls/shell32/shelllink.c<br>+++ b/dlls/shell32/shelllink.c<br>@@ -2664,14 +2664,14 @@ static HRESULT WINAPI propertystore_SetValue(IPropertyStore *iface, REFPROPERTYK<br> {<br>     IShellLinkImpl *This = impl_from_IPropertyStore(iface);<br>     FIXME("(%p)->(%p %p): stub\n", This, key, value);<br>-    return E_NOTIMPL;<br>+    return S_OK;<br> }<br> <br> static HRESULT WINAPI propertystore_Commit(IPropertyStore *iface)<br> {<br>     IShellLinkImpl *This = impl_from_IPropertyStore(iface);<br>     FIXME("(%p): stub\n", This);<br>-    return E_NOTIMPL;<br>+    return S_OK;<br> }<br> <br> static const IPropertyStoreVtbl propertystorevtbl = {<br>-- <br>2.7.4<br><br></pre><br></div>