wininet: Fixed CreateUrlCacheEntryW behaviour on URLs without '\' and '/' characters.

This commit is contained in:
Piotr Caban 2012-12-21 17:06:16 +01:00 committed by Alexandre Julliard
parent 99d1a8529b
commit 2f35659035

View File

@ -2901,6 +2901,9 @@ BOOL WINAPI CreateUrlCacheEntryW(
break;
}
}
if(!bFound)
lpszUrlPart++;
if (!lstrcmpW(lpszUrlPart, szWWW))
{
lpszUrlPart += lstrlenW(szWWW);