Commit 2f356590 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

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

parent 99d1a852
......@@ -2901,6 +2901,9 @@ BOOL WINAPI CreateUrlCacheEntryW(
break;
}
}
if(!bFound)
lpszUrlPart++;
if (!lstrcmpW(lpszUrlPart, szWWW))
{
lpszUrlPart += lstrlenW(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