diff options
author | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-01 17:26:06 +0000 |
---|---|---|
committer | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-01 17:26:06 +0000 |
commit | d46d6f3b80099ce0c630185a2e86b649bba49254 (patch) | |
tree | 3467712dd0265f76edf1ae0fcc6da131670bad74 /base/string_escape.cc | |
parent | f89a6233760f8ca8033265046ed9ea38bbc20bf9 (diff) | |
download | chromium_src-d46d6f3b80099ce0c630185a2e86b649bba49254.zip chromium_src-d46d6f3b80099ce0c630185a2e86b649bba49254.tar.gz chromium_src-d46d6f3b80099ce0c630185a2e86b649bba49254.tar.bz2 |
Fixes bug where JSON reader errored on reading vertical tabs (\v). The
writer properly escapes a vertical tab, but the readed instead errored
on the vertical this. This resulted in lost bookmarks:(
BUG=3031
TEST=covered by unit tests
Review URL: http://codereview.chromium.org/5628
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2759 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/string_escape.cc')
-rw-r--r-- | base/string_escape.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/base/string_escape.cc b/base/string_escape.cc index 5b85e9c..c2fc542 100644 --- a/base/string_escape.cc +++ b/base/string_escape.cc @@ -14,6 +14,7 @@ namespace string_escape { // returns true and appends the escape sequence to |dst|. template<typename CHAR> static bool JavascriptSingleEscapeChar(const CHAR c, std::string* dst) { + // WARNING: if you add a new case here, you need to update the reader as well. switch (c) { case '\b': dst->append("\\b"); |