| Index: core/fpdfapi/parser/fpdf_parser_utility.cpp | 
| diff --git a/core/fpdfapi/parser/fpdf_parser_utility.cpp b/core/fpdfapi/parser/fpdf_parser_utility.cpp | 
| index 7b9ead40051de98b5cde02aa1cf87bc7254c5da4..6f1ce14d6e09ceef89c176d2e73fb9d1703fb5a1 100644 | 
| --- a/core/fpdfapi/parser/fpdf_parser_utility.cpp | 
| +++ b/core/fpdfapi/parser/fpdf_parser_utility.cpp | 
| @@ -193,7 +193,7 @@ CFX_ByteTextBuf& operator<<(CFX_ByteTextBuf& buf, const CPDF_Object* pObj) { | 
| buf << "<<"; | 
| for (const auto& it : *p) { | 
| const CFX_ByteString& key = it.first; | 
| -        CPDF_Object* pValue = it.second; | 
| +        CPDF_Object* pValue = it.second.get(); | 
| buf << "/" << PDF_NameEncode(key); | 
| if (pValue && !pValue->IsInline()) { | 
| buf << " " << pValue->GetObjNum() << " 0 R "; | 
|  |