summaryrefslogtreecommitdiff
path: root/core/fpdfdoc/cpdf_formfield.cpp
diff options
context:
space:
mode:
authorNicolas Pena <npm@chromium.org>2017-06-20 17:42:39 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-06-20 22:10:32 +0000
commit995a601c50874729ac40e2cc444b8894cf2aea96 (patch)
treef2429607324df0be7585c2099505444e0247ef1f /core/fpdfdoc/cpdf_formfield.cpp
parentdce2d72f9fbc166ee8eed0e362ab26e1e1a33cdd (diff)
downloadpdfium-995a601c50874729ac40e2cc444b8894cf2aea96.tar.xz
Cleanup fpdf_parser_decode
This CL fixes some nits in fpdf_parser_decode, especially avoiding non-const reference parameters. Change-Id: Ibb914850afd924bb398f886ac862f7589519ef7e Reviewed-on: https://pdfium-review.googlesource.com/6750 Commit-Queue: Nicolás Peña <npm@chromium.org> Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core/fpdfdoc/cpdf_formfield.cpp')
-rw-r--r--core/fpdfdoc/cpdf_formfield.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/fpdfdoc/cpdf_formfield.cpp b/core/fpdfdoc/cpdf_formfield.cpp
index cd47f269bc..acb46a5beb 100644
--- a/core/fpdfdoc/cpdf_formfield.cpp
+++ b/core/fpdfdoc/cpdf_formfield.cpp
@@ -662,8 +662,7 @@ int CPDF_FormField::InsertOption(CFX_WideString csOptLabel,
if (bNotify && !NotifyListOrComboBoxBeforeChange(csOptLabel))
return -1;
- CFX_ByteString csStr =
- PDF_EncodeText(csOptLabel.c_str(), csOptLabel.GetLength());
+ CFX_ByteString csStr = PDF_EncodeText(csOptLabel);
CPDF_Array* pOpt = ToArray(FPDF_GetFieldAttr(m_pDict.Get(), "Opt"));
if (!pOpt)
pOpt = m_pDict->SetNewFor<CPDF_Array>("Opt");