summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/xfa_localemgr.cpp
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2017-02-27 14:45:56 -0800
committerChromium commit bot <commit-bot@chromium.org>2017-02-28 00:35:05 +0000
commita99de0ec3cda8ff5b0d6383a059dd39c8626e504 (patch)
treefea2f04aca7aca32fc85c952040cf8593f40a64e /xfa/fxfa/parser/xfa_localemgr.cpp
parentce32acfa15071e6cd5bcce73280857014e396dd2 (diff)
downloadpdfium-a99de0ec3cda8ff5b0d6383a059dd39c8626e504.tar.xz
Clean up CXML_Element.chromium/3026
- Set more members in the ctor - Remove dead code - Use more unique_ptrs Change-Id: Idfe85d07c784a57862f9314bc85f407f817b8f2f Reviewed-on: https://pdfium-review.googlesource.com/2844 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Nicolás Peña <npm@chromium.org> Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/xfa_localemgr.cpp')
-rw-r--r--xfa/fxfa/parser/xfa_localemgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/xfa_localemgr.cpp b/xfa/fxfa/parser/xfa_localemgr.cpp
index cfa5801e3c..0cd64ea6dc 100644
--- a/xfa/fxfa/parser/xfa_localemgr.cpp
+++ b/xfa/fxfa/parser/xfa_localemgr.cpp
@@ -1053,7 +1053,7 @@ static std::unique_ptr<IFX_Locale> XFA_GetLocaleFromBuffer(const uint8_t* pBuf,
pCodecMgr->GetFlateModule()->FlateOrLZWDecode(false, pBuf, nBufLen, true, 0,
0, 0, 0, 0, pOut, dwSize);
if (pOut) {
- pLocale.reset(CXML_Element::Parse(pOut, dwSize));
+ pLocale = CXML_Element::Parse(pOut, dwSize);
FX_Free(pOut);
}
return pLocale ? std::unique_ptr<IFX_Locale>(