Commit 873905ac authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

hlink: Fix HlinkCreateFromString to create a URL moniker if the input target is a URL.

parent 58634e84
......@@ -134,17 +134,22 @@ HRESULT WINAPI HlinkCreateFromString( LPCWSTR pwzTarget, LPCWSTR pwzLocation,
if (FAILED(r))
{
FIXME("ParseDisplayName failed, falling back to file\n");
LPCWSTR p = strchrW(pwzTarget, ':');
if (p && (p - pwzTarget > 1))
r = CreateURLMoniker(NULL, pwzTarget, &pTgtMk);
else
r = CreateFileMoniker(pwzTarget,&pTgtMk);
}
if (pTgtMk)
if (FAILED(r))
{
ERR("couldn't create moniker for %s, failed with error 0x%08x\n",
debugstr_w(pwzTarget), r);
return r;
}
IHlink_SetMonikerReference(hl, 0, pTgtMk, pwzLocation);
IMoniker_Release(pTgtMk);
}
else
FIXME("Unable to come up with a moniker, expect problems\n");
IHlink_SetStringReference(hl, HLINKSETF_TARGET, pwzTarget, NULL);
}
......
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