| Index: core/fpdfdoc/cpdf_interform.cpp
|
| diff --git a/core/fpdfdoc/cpdf_interform.cpp b/core/fpdfdoc/cpdf_interform.cpp
|
| index b8b4b68e297efba6ac0a65c497b1ab2717024234..3bef85ef9ce1b9b85f7724f8efd235f84b8e6041 100644
|
| --- a/core/fpdfdoc/cpdf_interform.cpp
|
| +++ b/core/fpdfdoc/cpdf_interform.cpp
|
| @@ -138,7 +138,7 @@ CPDF_Font* GetNativeFont(CPDF_Dictionary* pFormDict,
|
|
|
| for (const auto& it : *pFonts) {
|
| const CFX_ByteString& csKey = it.first;
|
| - CPDF_Object* pObj = it.second;
|
| + CPDF_Object* pObj = it.second.get();
|
| if (!pObj)
|
| continue;
|
|
|
| @@ -179,7 +179,7 @@ FX_BOOL FindFont(CPDF_Dictionary* pFormDict,
|
|
|
| for (const auto& it : *pFonts) {
|
| const CFX_ByteString& csKey = it.first;
|
| - CPDF_Object* pObj = it.second;
|
| + CPDF_Object* pObj = it.second.get();
|
| if (!pObj)
|
| continue;
|
|
|
| @@ -216,7 +216,7 @@ FX_BOOL FindFont(CPDF_Dictionary* pFormDict,
|
|
|
| for (const auto& it : *pFonts) {
|
| const CFX_ByteString& csKey = it.first;
|
| - CPDF_Object* pObj = it.second;
|
| + CPDF_Object* pObj = it.second.get();
|
| if (!pObj)
|
| continue;
|
|
|
|
|