summaryrefslogtreecommitdiff
path: root/core/fpdfapi/fpdf_page/cpdf_tilingpattern.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/fpdfapi/fpdf_page/cpdf_tilingpattern.cpp')
-rw-r--r--core/fpdfapi/fpdf_page/cpdf_tilingpattern.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/core/fpdfapi/fpdf_page/cpdf_tilingpattern.cpp b/core/fpdfapi/fpdf_page/cpdf_tilingpattern.cpp
index f49ad2b8fb..3ace57063c 100644
--- a/core/fpdfapi/fpdf_page/cpdf_tilingpattern.cpp
+++ b/core/fpdfapi/fpdf_page/cpdf_tilingpattern.cpp
@@ -20,12 +20,9 @@ CPDF_TilingPattern::CPDF_TilingPattern(CPDF_Document* pDoc,
m_bColored = pDict->GetIntegerBy("PaintType") == 1;
if (parentMatrix)
m_Pattern2Form.Concat(*parentMatrix);
-
- m_pForm = nullptr;
}
CPDF_TilingPattern::~CPDF_TilingPattern() {
- delete m_pForm;
}
FX_BOOL CPDF_TilingPattern::Load() {
@@ -44,8 +41,8 @@ FX_BOOL CPDF_TilingPattern::Load() {
if (!pStream)
return FALSE;
- m_pForm = new CPDF_Form(m_pDocument, NULL, pStream);
- m_pForm->ParseContent(NULL, &m_ParentMatrix, NULL, NULL);
+ m_pForm.reset(new CPDF_Form(m_pDocument, nullptr, pStream));
+ m_pForm->ParseContent(nullptr, &m_ParentMatrix, nullptr);
m_BBox = pDict->GetRectBy("BBox");
return TRUE;
}