Index: core/src/fpdfapi/fpdf_parser/fpdf_parser_document.cpp |
diff --git a/core/src/fpdfapi/fpdf_parser/fpdf_parser_document.cpp b/core/src/fpdfapi/fpdf_parser/fpdf_parser_document.cpp |
index 3d9900deaca1860cc747d7fac3a57238b5c80397..23962612763c6564dd81d1c547cf0fb159c4e9ab 100644 |
--- a/core/src/fpdfapi/fpdf_parser/fpdf_parser_document.cpp |
+++ b/core/src/fpdfapi/fpdf_parser/fpdf_parser_document.cpp |
@@ -306,7 +306,7 @@ FX_BOOL CPDF_Document::IsContentUsedElsewhere(FX_DWORD objnum, |
continue; |
} |
if (pContents->GetDirectType() == PDFOBJ_ARRAY) { |
- CPDF_Array* pArray = (CPDF_Array*)pContents->GetDirect(); |
+ CPDF_Array* pArray = pContents->GetDirect()->AsArray(); |
for (FX_DWORD j = 0; j < pArray->GetCount(); j++) { |
CPDF_Object* pRef = pArray->GetElement(j); |
if (pRef == NULL || pRef->GetType() != PDFOBJ_REFERENCE) { |