| Index: core/src/fpdfdoc/doc_link.cpp
|
| diff --git a/core/src/fpdfdoc/doc_link.cpp b/core/src/fpdfdoc/doc_link.cpp
|
| index fbf18f99e5cd7791b87ec65205cd3d2618f89fef..95411013b48bffe8141f49cb8125c2fc72fbfa19 100644
|
| --- a/core/src/fpdfdoc/doc_link.cpp
|
| +++ b/core/src/fpdfdoc/doc_link.cpp
|
| @@ -76,7 +76,7 @@ CPDF_Dest CPDF_Link::GetDest(CPDF_Document* pDoc) {
|
| if (pDest == NULL) {
|
| return CPDF_Dest();
|
| }
|
| - if (pDest->GetType() == PDFOBJ_STRING || pDest->GetType() == PDFOBJ_NAME) {
|
| + if (pDest->IsString() || pDest->GetType() == PDFOBJ_NAME) {
|
| CPDF_NameTree name_tree(pDoc, FX_BSTRC("Dests"));
|
| CFX_ByteStringC name = pDest->GetString();
|
| return CPDF_Dest(name_tree.LookupNamedDest(pDoc, name));
|
|
|