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 /fpdfsdk/fpdfview.cpp | |
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 'fpdfsdk/fpdfview.cpp')
-rw-r--r-- | fpdfsdk/fpdfview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/fpdfview.cpp b/fpdfsdk/fpdfview.cpp index 7f2faa0947..3ab81fe112 100644 --- a/fpdfsdk/fpdfview.cpp +++ b/fpdfsdk/fpdfview.cpp @@ -1104,7 +1104,7 @@ DLLEXPORT FPDF_DEST STDCALL FPDF_GetNamedDest(FPDF_DOCUMENT document, int i = 0; for (const auto& it : *pDest) { bsName = it.first; - pDestObj = it.second.get(); + pDestObj = it.second; if (!pDestObj) continue; if (i == index) |