diff options
author | tsepez <tsepez@chromium.org> | 2016-10-17 11:13:54 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-17 11:13:54 -0700 |
commit | d5bd8a16565bbee05bfb8a8409f3ba90c461da0e (patch) | |
tree | a36c7a23c77ca3d2990109b419b823e801978e67 /core/fpdfapi/parser/cpdf_stream.h | |
parent | 522ed14ce8cf39e5e6fc1a58099edd4f849b7fb8 (diff) | |
download | pdfium-d5bd8a16565bbee05bfb8a8409f3ba90c461da0e.tar.xz |
Revert "Make CPDF_Object containers hold objects via unique pointers."
This reverts commit 1d023881cd53485303c0fcc0b5878e700dc470fd.
Reason for revert -- fuzzers hit issues.
TBR=thestig@chromium.org
Review-Url: https://codereview.chromium.org/2425783002
Diffstat (limited to 'core/fpdfapi/parser/cpdf_stream.h')
-rw-r--r-- | core/fpdfapi/parser/cpdf_stream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpdfapi/parser/cpdf_stream.h b/core/fpdfapi/parser/cpdf_stream.h index b440f94354..756eccfba1 100644 --- a/core/fpdfapi/parser/cpdf_stream.h +++ b/core/fpdfapi/parser/cpdf_stream.h @@ -51,7 +51,7 @@ class CPDF_Stream : public CPDF_Object { bool bDirect, std::set<const CPDF_Object*>* pVisited) const override; - UniqueDictionary m_pDict; + std::unique_ptr<CPDF_Dictionary, ReleaseDeleter<CPDF_Dictionary>> m_pDict; bool m_bMemoryBased = true; uint32_t m_dwSize = 0; std::unique_ptr<uint8_t, FxFreeDeleter> m_pDataBuf; |