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

This commit is contained in:
Jacek Caban 2008-03-16 21:10:24 +01:00 committed by Alexandre Julliard
parent d44c295651
commit e8be5eaba7
1 changed files with 4 additions and 0 deletions

View File

@ -2124,6 +2124,10 @@ BOOL WINAPI CreateUrlCacheEntryW(
lpszUrlPart++;
break;
}
else if(*lpszUrlPart == '?' || *lpszUrlPart == '#')
{
lpszUrlEnd = lpszUrlPart;
}
}
if (!lstrcmpW(lpszUrlPart, szWWW))
{