Commit 7ba8c86f authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wininet: Don't fail if dwReserved is set in CreateUrlCacheEntryW.

parent a2f6bac1
......@@ -2222,11 +2222,7 @@ BOOL WINAPI CreateUrlCacheEntryW(
dwReserved);
if (dwReserved)
{
ERR("dwReserved != 0\n");
SetLastError(ERROR_INVALID_PARAMETER);
return FALSE;
}
FIXME("dwReserved 0x%08x\n", dwReserved);
lpszUrlEnd = lpszUrlName + strlenW(lpszUrlName);
......
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