| Index: core/fpdfdoc/doc_link.cpp
|
| diff --git a/core/fpdfdoc/doc_link.cpp b/core/fpdfdoc/doc_link.cpp
|
| index 8f8d0d158ca3a1ab088569d96585eca932385c5b..205471c92f9a40b67a06ff132c2f8f010d7ac70e 100644
|
| --- a/core/fpdfdoc/doc_link.cpp
|
| +++ b/core/fpdfdoc/doc_link.cpp
|
| @@ -63,7 +63,7 @@ void CPDF_LinkList::LoadPageLinks(CPDF_Page* pPage,
|
| if (!pAnnotList)
|
| return;
|
|
|
| - for (uint32_t i = 0; i < pAnnotList->GetCount(); ++i) {
|
| + for (size_t i = 0; i < pAnnotList->GetCount(); ++i) {
|
| CPDF_Dictionary* pAnnot = pAnnotList->GetDictAt(i);
|
| bool add_link = (pAnnot && pAnnot->GetStringBy("Subtype") == "Link");
|
| // Add non-links as nullptrs to preserve z-order.
|
|
|