diff options
author | pkasting <pkasting@chromium.org> | 2014-10-20 15:35:11 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-20 22:36:05 +0000 |
commit | 7b51db65f6419f7b17f75063b84fb1e84c2e7d01 (patch) | |
tree | eddc1fd9ae14bb98053b61868b57fdeaad7d5c81 /url/url_canon_pathurl.cc | |
parent | 7739d132d3d59b3e0be4fa94ed1571e975235c2d (diff) | |
download | chromium_src-7b51db65f6419f7b17f75063b84fb1e84c2e7d01.zip chromium_src-7b51db65f6419f7b17f75063b84fb1e84c2e7d01.tar.gz chromium_src-7b51db65f6419f7b17f75063b84fb1e84c2e7d01.tar.bz2 |
Type conversion fixes, url/ edition.
This is mostly to fix MSVC warnings about possible value truncation.
BUG=81439
TEST=none
Review URL: https://codereview.chromium.org/662713004
Cr-Commit-Position: refs/heads/master@{#300358}
Diffstat (limited to 'url/url_canon_pathurl.cc')
-rw-r--r-- | url/url_canon_pathurl.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/url/url_canon_pathurl.cc b/url/url_canon_pathurl.cc index e81a4af..0d23ccb 100644 --- a/url/url_canon_pathurl.cc +++ b/url/url_canon_pathurl.cc @@ -19,13 +19,13 @@ namespace { template<typename CHAR, typename UCHAR> bool DoCanonicalizePathComponent(const CHAR* source, const Component& component, - CHAR seperator, + char separator, CanonOutput* output, Component* new_component) { bool success = true; if (component.is_valid()) { - if (seperator) - output->push_back(seperator); + if (separator) + output->push_back(separator); // Copy the path using path URL's more lax escaping rules (think for // javascript:). We convert to UTF-8 and escape non-ASCII, but leave all // ASCII characters alone. This helps readability of JavaStript. @@ -64,7 +64,7 @@ bool DoCanonicalizePathURL(const URLComponentSource<CHAR>& source, // We allow path URLs to have the path, query and fragment components, but we // will canonicalize each of the via the weaker path URL rules. success &= DoCanonicalizePathComponent<CHAR, UCHAR>( - source.path, parsed.path, 0, output, &new_parsed->path); + source.path, parsed.path, '\0', output, &new_parsed->path); success &= DoCanonicalizePathComponent<CHAR, UCHAR>( source.query, parsed.query, '?', output, &new_parsed->query); success &= DoCanonicalizePathComponent<CHAR, UCHAR>( |