From 86b5267ac4c2f169f105a1ea30cdf2eb0ea0b5dc Mon Sep 17 00:00:00 2001 From: Ryan Harrison Date: Thu, 4 Jan 2018 14:49:12 -0500 Subject: Make indices for CXFA_List be size_t instead of int32_t Change-Id: Id825e027a337636bb779f09bc0b1c6985a781fa1 Reviewed-on: https://pdfium-review.googlesource.com/22257 Commit-Queue: Ryan Harrison Reviewed-by: dsinclair --- xfa/fxfa/parser/cxfa_attachnodelist.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'xfa/fxfa/parser/cxfa_attachnodelist.cpp') diff --git a/xfa/fxfa/parser/cxfa_attachnodelist.cpp b/xfa/fxfa/parser/cxfa_attachnodelist.cpp index 3666b99bd4..2a4741175a 100644 --- a/xfa/fxfa/parser/cxfa_attachnodelist.cpp +++ b/xfa/fxfa/parser/cxfa_attachnodelist.cpp @@ -6,6 +6,7 @@ #include "xfa/fxfa/parser/cxfa_attachnodelist.h" +#include "third_party/base/numerics/safe_conversions.h" #include "xfa/fxfa/parser/cxfa_node.h" CXFA_AttachNodeList::CXFA_AttachNodeList(CXFA_Document* pDocument, @@ -40,8 +41,8 @@ bool CXFA_AttachNodeList::Remove(CXFA_Node* pNode) { return m_pAttachNode->RemoveChild(pNode, true); } -CXFA_Node* CXFA_AttachNodeList::Item(int32_t iIndex) { +CXFA_Node* CXFA_AttachNodeList::Item(size_t index) { return m_pAttachNode->GetChild( - iIndex, XFA_Element::Unknown, + pdfium::base::checked_cast(index), XFA_Element::Unknown, m_pAttachNode->GetElementType() == XFA_Element::Subform); } -- cgit v1.2.3