diff options
-rw-r--r-- | DEPS | 2 | ||||
-rw-r--r-- | webkit/port/platform/GKURL.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ deps = { "http://google-breakpad.googlecode.com/svn/trunk/src@281", "src/googleurl": - "http://google-url.googlecode.com/svn/trunk@90", + "http://google-url.googlecode.com/svn/trunk@91", "src/testing/gtest": "http://googletest.googlecode.com/svn/trunk@63", diff --git a/webkit/port/platform/GKURL.cpp b/webkit/port/platform/GKURL.cpp index 534f206..bf71fda 100644 --- a/webkit/port/platform/GKURL.cpp +++ b/webkit/port/platform/GKURL.cpp @@ -616,7 +616,7 @@ DeprecatedString KURL::decode_string(const DeprecatedString& urlString) url_canon::RawCanonOutputT<char> unescaped; for (int i = 0; i < input_length; i++) { if (input[i] == '%') { - char ch; + unsigned char ch; if (url_canon::DecodeEscaped(input, &i, input_length, &ch)) { if (ch == 0) { // Never unescape NULLs. |