diff options
Diffstat (limited to 'chrome/browser/dom_ui')
-rw-r--r-- | chrome/browser/dom_ui/dom_ui_host.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/dom_ui/dom_ui_host.cc b/chrome/browser/dom_ui/dom_ui_host.cc index 8bb7cad..b7d685f 100644 --- a/chrome/browser/dom_ui/dom_ui_host.cc +++ b/chrome/browser/dom_ui/dom_ui_host.cc @@ -104,7 +104,7 @@ void DOMUIHost::ProcessDOMUIMessage(const std::string& message, // Convert the content JSON into a Value. Value* value = NULL; if (!content.empty()) { - if (!JSONReader::Read(content, &value)) { + if (!JSONReader::Read(content, &value, false)) { // The page sent us something that we didn't understand. // This probably indicates a programming error. NOTREACHED(); |