Commit e8be5eab authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

wininet: Don't use query and hash part of URL to generate cache file name.

parent d44c2956
......@@ -2124,6 +2124,10 @@ BOOL WINAPI CreateUrlCacheEntryW(
lpszUrlPart++;
break;
}
else if(*lpszUrlPart == '?' || *lpszUrlPart == '#')
{
lpszUrlEnd = lpszUrlPart;
}
}
if (!lstrcmpW(lpszUrlPart, szWWW))
{
......
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