File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -349,7 +349,7 @@ static inline String fileSystemPathWindows(WTF::StringView host, WTF::StringView
349349 ASSERT (path.containsOnlyASCII ());
350350
351351 // UNC paths look like '\\server\share\etc', but in a URL they look like 'file://server/share/etc'.
352- String decodedPath = path.is8Bit () ? decodeEscapeSequencesFromParsedURLForWindowsPath<LChar >(path.span8 ()) : decodeEscapeSequencesFromParsedURLForWindowsPath<UChar>(path.span16 ());
352+ String decodedPath = path.is8Bit () ? decodeEscapeSequencesFromParsedURLForWindowsPath<Latin1Character >(path.span8 ()) : decodeEscapeSequencesFromParsedURLForWindowsPath<UChar>(path.span16 ());
353353 if (host.length () > 0 ) [[unlikely]] {
354354 return makeString (" \\\\ " _s, host, " \\ " _s, decodedPath);
355355 }
You can’t perform that action at this time.
0 commit comments