| Index: fpdfsdk/fpdf_flatten.cpp
|
| diff --git a/fpdfsdk/fpdf_flatten.cpp b/fpdfsdk/fpdf_flatten.cpp
|
| index e445d9abfa62e560ded266035db7d39ed0df3f33..fe81246a0b56e401ca575e2d3f6a0dbc551a0b2b 100644
|
| --- a/fpdfsdk/fpdf_flatten.cpp
|
| +++ b/fpdfsdk/fpdf_flatten.cpp
|
| @@ -45,9 +45,8 @@ FX_BOOL IsValiableRect(CFX_FloatRect rect, CFX_FloatRect rcPage) {
|
| void GetContentsRect(CPDF_Document* pDoc,
|
| CPDF_Dictionary* pDict,
|
| CPDF_RectArray* pRectArray) {
|
| - std::unique_ptr<CPDF_Page> pPDFPage(new CPDF_Page);
|
| - pPDFPage->Load(pDoc, pDict, FALSE);
|
| - pPDFPage->ParseContent(nullptr);
|
| + std::unique_ptr<CPDF_Page> pPDFPage(new CPDF_Page(pDoc, pDict, false));
|
| + pPDFPage->ParseContent();
|
|
|
| for (auto& pPageObject : *pPDFPage->GetPageObjectList()) {
|
| if (!pPageObject)
|
|
|