| Index: core/src/fpdfdoc/doc_bookmark.cpp
|
| diff --git a/core/src/fpdfdoc/doc_bookmark.cpp b/core/src/fpdfdoc/doc_bookmark.cpp
|
| index e7b383eced7201b6ffd5fb1374fe21c5bd1adca7..a3a194337e1d92244a081e27931866186349dba7 100644
|
| --- a/core/src/fpdfdoc/doc_bookmark.cpp
|
| +++ b/core/src/fpdfdoc/doc_bookmark.cpp
|
| @@ -86,7 +86,7 @@ CPDF_Dest CPDF_Bookmark::GetDest(CPDF_Document* pDocument) const
|
| CPDF_Action CPDF_Bookmark::GetAction() const
|
| {
|
| if (!m_pDict) {
|
| - return NULL;
|
| + return CPDF_Action();
|
| }
|
| - return m_pDict->GetDict("A");
|
| + return CPDF_Action(m_pDict->GetDict("A"));
|
| }
|
|
|