summaryrefslogtreecommitdiff
path: root/core/fpdfdoc
diff options
context:
space:
mode:
authortsepez <tsepez@chromium.org>2016-10-05 12:41:21 -0700
committerCommit bot <commit-bot@chromium.org>2016-10-05 12:41:21 -0700
commit87a8d4c605ec1c43ccd092b57e1aadf1dfe595de (patch)
treec730df68c5b8dc20e24874f38aefe3fbaee95bcb /core/fpdfdoc
parent8afe15a019c78a24168ebc42306342c25358ccdf (diff)
downloadpdfium-87a8d4c605ec1c43ccd092b57e1aadf1dfe595de.tar.xz
Rework a redundant check when calling ConvertToIndirectObjectAt()
This avoids a re-assignment that can otherwise cause a later fault. BUG=pdfium:607 Review-Url: https://codereview.chromium.org/2393953002
Diffstat (limited to 'core/fpdfdoc')
-rw-r--r--core/fpdfdoc/cpdf_annotlist.cpp16
1 files changed, 4 insertions, 12 deletions
diff --git a/core/fpdfdoc/cpdf_annotlist.cpp b/core/fpdfdoc/cpdf_annotlist.cpp
index 940cf324f4..f73ace9791 100644
--- a/core/fpdfdoc/cpdf_annotlist.cpp
+++ b/core/fpdfdoc/cpdf_annotlist.cpp
@@ -68,20 +68,12 @@ CPDF_AnnotList::CPDF_AnnotList(CPDF_Page* pPage)
pAcroForm && pAcroForm->GetBooleanFor("NeedAppearances");
for (size_t i = 0; i < pAnnots->GetCount(); ++i) {
CPDF_Dictionary* pDict = ToDictionary(pAnnots->GetDirectObjectAt(i));
- if (!pDict)
+ if (!pDict || pDict->GetStringFor("Subtype") == "Popup") {
+ // Skip creating Popup annotations in the PDF document since PDFium
+ // provides its own Popup annotations.
continue;
-
- uint32_t dwObjNum = pDict->GetObjNum();
- if (dwObjNum == 0) {
- pAnnots->ConvertToIndirectObjectAt(i, m_pDocument);
- pDict = pAnnots->GetDictAt(i);
}
-
- // Skip creating Popup annotation in the PDF document since PDFium provides
- // its own Popup annotations.
- if (pDict->GetStringFor("Subtype") == "Popup")
- continue;
-
+ pAnnots->ConvertToIndirectObjectAt(i, m_pDocument);
m_AnnotList.push_back(
std::unique_ptr<CPDF_Annot>(new CPDF_Annot(pDict, m_pDocument, false)));
if (bRegenerateAP && pDict->GetStringFor("Subtype") == "Widget" &&