From 82bbcfed319b9cba0caa50449acdd3fa15f814d3 Mon Sep 17 00:00:00 2001 From: "tc@google.com" Date: Thu, 21 Aug 2008 18:34:12 +0000 Subject: Update googleurl to r91. This fixes the linux build. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1166 0039d316-1c4b-4281-b951-d872f2087c98 --- DEPS | 2 +- webkit/port/platform/GKURL.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DEPS b/DEPS index 25af399..47b6c80 100644 --- a/DEPS +++ b/DEPS @@ -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 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. -- cgit v1.1