wininet: Don't use query and hash part of URL to generate cache file name.
This commit is contained in:
parent
d44c295651
commit
e8be5eaba7
|
@ -2124,6 +2124,10 @@ BOOL WINAPI CreateUrlCacheEntryW(
|
|||
lpszUrlPart++;
|
||||
break;
|
||||
}
|
||||
else if(*lpszUrlPart == '?' || *lpszUrlPart == '#')
|
||||
{
|
||||
lpszUrlEnd = lpszUrlPart;
|
||||
}
|
||||
}
|
||||
if (!lstrcmpW(lpszUrlPart, szWWW))
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue