summaryrefslogtreecommitdiff
path: root/xfa/fxfa/cxfa_widgetacc.cpp
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2017-05-02 16:23:34 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-05-03 13:24:51 +0000
commit69c743ff1034fc127fabfb9cc6fdb90dc7904e7d (patch)
tree63cb354d871b17f0f75f2f5214d45933757b7f4d /xfa/fxfa/cxfa_widgetacc.cpp
parentcadb4711bdc9cb99113aad2acdbc47711f065626 (diff)
downloadpdfium-69c743ff1034fc127fabfb9cc6fdb90dc7904e7d.tar.xz
XFA Nits: Dead CreateCharIter(), auto CFXJSE_Value unique ptr.
Change-Id: I2525684dd5662ef9cb95f63a68443faa97f4e25b Reviewed-on: https://pdfium-review.googlesource.com/4812 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_widgetacc.cpp')
-rw-r--r--xfa/fxfa/cxfa_widgetacc.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/xfa/fxfa/cxfa_widgetacc.cpp b/xfa/fxfa/cxfa_widgetacc.cpp
index 23327b7691..3e369d60e3 100644
--- a/xfa/fxfa/cxfa_widgetacc.cpp
+++ b/xfa/fxfa/cxfa_widgetacc.cpp
@@ -626,8 +626,7 @@ int32_t CXFA_WidgetAcc::ExecuteScript(CXFA_Script script,
pEventParam->m_eType == XFA_EVENT_Calculate) {
pContext->SetNodesOfRunScript(&refNodes);
}
- std::unique_ptr<CFXJSE_Value> pTmpRetValue(
- new CFXJSE_Value(pContext->GetRuntime()));
+ auto pTmpRetValue = pdfium::MakeUnique<CFXJSE_Value>(pContext->GetRuntime());
++m_nRecursionDepth;
bool bRet = pContext->RunScript((XFA_SCRIPTLANGTYPE)eScriptType,
wsExpression.AsStringC(), pTmpRetValue.get(),