diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-08-16 16:20:08 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-16 16:20:08 +0000 |
commit | 048d7f7c1e0c6c42679a5646ae9db5b7d98ed755 (patch) | |
tree | 42701f3662d9454d7ce23fcf8cae1c3108763095 /core/fpdfapi/parser | |
parent | 2a3377ce9a39d47d29c95d5db64690ad749d8c94 (diff) | |
download | pdfium-048d7f7c1e0c6c42679a5646ae9db5b7d98ed755.tar.xz |
Remove more optional args in core/
Change-Id: I6a2bd03e00ad4e3d57f6931c0c6cf4ae0c760afb
Reviewed-on: https://pdfium-review.googlesource.com/40290
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fpdfapi/parser')
-rw-r--r-- | core/fpdfapi/parser/cpdf_document.cpp | 2 | ||||
-rw-r--r-- | core/fpdfapi/parser/cpdf_document.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/fpdfapi/parser/cpdf_document.cpp b/core/fpdfapi/parser/cpdf_document.cpp index cda6bd5582..1dd801de69 100644 --- a/core/fpdfapi/parser/cpdf_document.cpp +++ b/core/fpdfapi/parser/cpdf_document.cpp @@ -434,7 +434,7 @@ int CPDF_Document::GetPageIndex(uint32_t objnum) { return -1; int start_index = 0; - int found_index = FindPageIndex(pPages, &skip_count, objnum, &start_index); + int found_index = FindPageIndex(pPages, &skip_count, objnum, &start_index, 0); // Corrupt page tree may yield out-of-range results. if (!pdfium::IndexInBounds(m_PageList, found_index)) diff --git a/core/fpdfapi/parser/cpdf_document.h b/core/fpdfapi/parser/cpdf_document.h index 0c6ec79c72..1cbc5fcc42 100644 --- a/core/fpdfapi/parser/cpdf_document.h +++ b/core/fpdfapi/parser/cpdf_document.h @@ -133,7 +133,7 @@ class CPDF_Document : public Observable<CPDF_Document>, uint32_t* skip_count, uint32_t objnum, int* index, - int level = 0) const; + int level) const; std::unique_ptr<CPDF_Object> ParseIndirectObject(uint32_t objnum) override; void LoadDocInternal(); size_t CalculateEncodingDict(int charset, CPDF_Dictionary* pBaseDict); |