| Index: core/fpdfapi/fpdf_page/cpdf_pathobject.cpp
|
| diff --git a/core/fpdfapi/fpdf_page/cpdf_pathobject.cpp b/core/fpdfapi/fpdf_page/cpdf_pathobject.cpp
|
| index d48c84bf4a0c949ba4a09151f72037527b516799..ceb3dd43ccb86118cb5e5b6e9d47e8998a3a456e 100644
|
| --- a/core/fpdfapi/fpdf_page/cpdf_pathobject.cpp
|
| +++ b/core/fpdfapi/fpdf_page/cpdf_pathobject.cpp
|
| @@ -48,9 +48,9 @@ void CPDF_PathObject::CalcBoundingBox() {
|
| CFX_FloatRect rect;
|
| FX_FLOAT width = m_GraphState->m_LineWidth;
|
| if (m_bStroke && width != 0) {
|
| - rect = m_Path->GetBoundingBox(width, m_GraphState->m_MiterLimit);
|
| + rect = m_Path.GetBoundingBox(width, m_GraphState->m_MiterLimit);
|
| } else {
|
| - rect = m_Path->GetBoundingBox();
|
| + rect = m_Path.GetBoundingBox();
|
| }
|
| rect.Transform(&m_Matrix);
|
| if (width == 0 && m_bStroke) {
|
|
|