diff options
author | Ryan Harrison <rharrison@chromium.org> | 2017-12-07 18:18:14 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-12-07 18:18:14 +0000 |
commit | 39a076f19c05ac1ebb4f1dd15f9835ffb8611ae0 (patch) | |
tree | 2385e695edbbc94d37b552ac73ccbf4438a01872 /core/fxcrt/xml | |
parent | 50a3124a7a1fa7596b9306445786d73e7cac2d90 (diff) | |
download | pdfium-39a076f19c05ac1ebb4f1dd15f9835ffb8611ae0.tar.xz |
Fix WideString::Format instances that should use %ls
BUG=pdfium:951
Change-Id: I4b82ce81c8db3f00fa2341c6fb853ed84814e5e5
Reviewed-on: https://pdfium-review.googlesource.com/20510
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'core/fxcrt/xml')
-rw-r--r-- | core/fxcrt/xml/cfx_xmldoc.cpp | 2 | ||||
-rw-r--r-- | core/fxcrt/xml/cfx_xmlnode.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/fxcrt/xml/cfx_xmldoc.cpp b/core/fxcrt/xml/cfx_xmldoc.cpp index e29c09a08e..36c3606017 100644 --- a/core/fxcrt/xml/cfx_xmldoc.cpp +++ b/core/fxcrt/xml/cfx_xmldoc.cpp @@ -68,7 +68,7 @@ void CFX_XMLDoc::SaveXMLNode( pXMLStream->WriteString(ws.AsStringView()); } else { WideString ws = - WideString::Format(L"<?%s", pInstruction->GetName().c_str()); + WideString::Format(L"<?%ls", pInstruction->GetName().c_str()); pXMLStream->WriteString(ws.AsStringView()); for (auto it : pInstruction->GetAttributes()) { diff --git a/core/fxcrt/xml/cfx_xmlnode.cpp b/core/fxcrt/xml/cfx_xmlnode.cpp index 601999cbad..41889e2d1c 100644 --- a/core/fxcrt/xml/cfx_xmlnode.cpp +++ b/core/fxcrt/xml/cfx_xmlnode.cpp @@ -347,7 +347,7 @@ void CFX_XMLNode::SaveXMLNode( ws += L"\"?>"; pXMLStream->WriteString(ws.AsStringView()); } else { - ws = WideString::Format(L"<?%s", pInstruction->GetName().c_str()); + ws = WideString::Format(L"<?%ls", pInstruction->GetName().c_str()); pXMLStream->WriteString(ws.AsStringView()); for (auto it : pInstruction->GetAttributes()) { |