Commit 075d6a12 authored by Martin Fuchs's avatar Martin Fuchs Committed by Alexandre Julliard

Fix for recent shelllink patch, which removed the important part of

returning the result pointer from IShellLink_ConstructFromFile().
parent f6e1be6a
......@@ -896,6 +896,9 @@ HRESULT WINAPI IShellLink_ConstructFromFile (
else
hr = E_FAIL;
if (SUCCEEDED(hr))
*ppv = (IUnknown*) psl;
IPersistFile_Release(ppf);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment