Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(984)

Unified Diff: src/url_canon_relative.cc

Issue 243028: Fix encoding of the query part of an URL [Issue 20507]. (Closed) Base URL: http://google-url.googlecode.com/svn/trunk/
Patch Set: '' Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/url_canon_relative.cc
===================================================================
--- src/url_canon_relative.cc (revision 118)
+++ src/url_canon_relative.cc (working copy)
@@ -351,7 +351,8 @@
if (query.is_valid()) {
// Just the query specified, replace the query and reference (ignore
// failures for refs)
- CanonicalizeQuery(relative_url, query, NULL, output, &out_parsed->query);
+ CanonicalizeQuery(relative_url, query, query_converter,
+ output, &out_parsed->query);
CanonicalizeRef(relative_url, ref, output, &out_parsed->ref);
return success;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698