Changeset 140861 in webkit
- Timestamp:
- Jan 25, 2013, 1:13:38 PM (13 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r140853 r140861 1 2013-01-25 Alexey Proskuryakov <ap@apple.com> 2 3 NetworkProcess cannot load files with non-ASCII names 4 https://bugs.webkit.org/show_bug.cgi?id=107977 5 6 Reviewed by Brady Eidson. 7 8 * Shared/Network/NetworkResourceLoadParameters.cpp: 9 (WebKit::NetworkResourceLoadParameters::encode): Use the correct path accessor. 10 1 11 2013-01-25 Alexey Proskuryakov <ap@apple.com> 2 12 -
trunk/Source/WebKit2/Shared/Network/NetworkResourceLoadParameters.cpp
r140843 r140861 89 89 if (m_request.url().isLocalFile()) { 90 90 SandboxExtension::Handle requestSandboxExtension; 91 SandboxExtension::createHandle(m_request.url(). path(), SandboxExtension::ReadOnly, requestSandboxExtension);91 SandboxExtension::createHandle(m_request.url().fileSystemPath(), SandboxExtension::ReadOnly, requestSandboxExtension); 92 92 encoder.encode(requestSandboxExtension); 93 93 }
Note:
See TracChangeset
for help on using the changeset viewer.