From 501e8cdc9143d4b1bebd22e7bfdcae4368e459ee Mon Sep 17 00:00:00 2001 From: tsepez Date: Wed, 18 May 2016 11:39:15 -0700 Subject: Remove Release() from CXFA_ChecksumContext Review-Url: https://codereview.chromium.org/1991913002 --- xfa/fxfa/app/xfa_checksum.cpp | 6 ++++-- xfa/fxfa/app/xfa_ffdoc.cpp | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'xfa/fxfa/app') diff --git a/xfa/fxfa/app/xfa_checksum.cpp b/xfa/fxfa/app/xfa_checksum.cpp index 195033bfab..1641816550 100644 --- a/xfa/fxfa/app/xfa_checksum.cpp +++ b/xfa/fxfa/app/xfa_checksum.cpp @@ -177,9 +177,11 @@ void CXFA_ChecksumContext::FinishChecksum() { m_pByteContext = NULL; } } -void CXFA_ChecksumContext::GetChecksum(CFX_ByteString& bsChecksum) { - bsChecksum = m_bsChecksum; + +CFX_ByteString CXFA_ChecksumContext::GetChecksum() const { + return m_bsChecksum; } + void CXFA_ChecksumContext::Update(const CFX_ByteStringC& bsText) { if (m_pByteContext) { CRYPT_SHA1Update(m_pByteContext, bsText.raw_str(), bsText.GetLength()); diff --git a/xfa/fxfa/app/xfa_ffdoc.cpp b/xfa/fxfa/app/xfa_ffdoc.cpp index 8297dce9ec..8621430d3f 100644 --- a/xfa/fxfa/app/xfa_ffdoc.cpp +++ b/xfa/fxfa/app/xfa_ffdoc.cpp @@ -377,7 +377,7 @@ FX_BOOL CXFA_FFDoc::SavePackage(const CFX_WideStringC& wsPackage, CFX_ByteString bsChecksum; if (pCSContext) - pCSContext->GetChecksum(bsChecksum); + bsChecksum = pCSContext->GetChecksum(); return pExport->Export(pFile, pNode, 0, bsChecksum.GetLength() ? bsChecksum.c_str() : nullptr); -- cgit v1.2.3