diff options
author | weili <weili@chromium.org> | 2016-05-17 00:45:43 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-17 00:45:43 -0700 |
commit | 47b998b53edbb071bb55c909169be1070126fb22 (patch) | |
tree | 733e34fab09e6b4b488339adffd8d2245ed61e1a /core/fpdfapi/fpdf_edit/include | |
parent | 5f3b41bca725090391b9053a9435c86fa7b22df1 (diff) | |
download | pdfium-47b998b53edbb071bb55c909169be1070126fb22.tar.xz |
Remove an unnecessary variable from CPDF_Creator
The variable may not be initialized before using, which caused
errors on DrMemory bot. Since it is not necessary, remove it.
TBR=thestig@chromium.org
Review-Url: https://codereview.chromium.org/1988603002
Diffstat (limited to 'core/fpdfapi/fpdf_edit/include')
-rw-r--r-- | core/fpdfapi/fpdf_edit/include/cpdf_creator.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/fpdfapi/fpdf_edit/include/cpdf_creator.h b/core/fpdfapi/fpdf_edit/include/cpdf_creator.h index c932dc0804..c63c864668 100644 --- a/core/fpdfapi/fpdf_edit/include/cpdf_creator.h +++ b/core/fpdfapi/fpdf_edit/include/cpdf_creator.h @@ -80,7 +80,6 @@ class CPDF_Creator { uint32_t m_dwEncryptObjNum; FX_BOOL m_bEncryptCloned; CPDF_CryptoHandler* m_pCryptoHandler; - FX_BOOL m_bLocalCryptoHandler; CPDF_Object* m_pMetadata; std::unique_ptr<CPDF_XRefStream> m_pXRefStream; int32_t m_ObjectStreamSize; |