| OLD | NEW |
| 1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | 6 |
| 7 #include "parser_int.h" | 7 #include "core/include/fpdfapi/fpdf_parser.h" |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <set> | 11 #include <set> |
| 12 #include <utility> | 12 #include <utility> |
| 13 #include <vector> | 13 #include <vector> |
| 14 | 14 |
| 15 #include "core/include/fpdfapi/fpdf_module.h" | 15 #include "core/include/fpdfapi/fpdf_module.h" |
| 16 #include "core/include/fpdfapi/fpdf_page.h" | 16 #include "core/include/fpdfapi/fpdf_page.h" |
| 17 #include "core/include/fpdfapi/fpdf_parser.h" | |
| 18 #include "core/include/fxcrt/fx_ext.h" | 17 #include "core/include/fxcrt/fx_ext.h" |
| 19 #include "core/include/fxcrt/fx_safe_types.h" | 18 #include "core/include/fxcrt/fx_safe_types.h" |
| 20 #include "core/src/fpdfapi/fpdf_page/pageint.h" | 19 #include "core/src/fpdfapi/fpdf_page/pageint.h" |
| 20 #include "core/src/fpdfapi/fpdf_parser/parser_int.h" |
| 21 #include "third_party/base/stl_util.h" | 21 #include "third_party/base/stl_util.h" |
| 22 | 22 |
| 23 namespace { | 23 namespace { |
| 24 | 24 |
| 25 // A limit on the size of the xref table. Theoretical limits are higher, but | 25 // A limit on the size of the xref table. Theoretical limits are higher, but |
| 26 // this may be large enough in practice. | 26 // this may be large enough in practice. |
| 27 const int32_t kMaxXRefSize = 1048576; | 27 const int32_t kMaxXRefSize = 1048576; |
| 28 | 28 |
| 29 // A limit on the maximum object number in the xref table. Theoretical limits | 29 // A limit on the maximum object number in the xref table. Theoretical limits |
| 30 // are higher, but this may be large enough in practice. | 30 // are higher, but this may be large enough in practice. |
| (...skipping 4938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4969 if (!m_pLinearizedDict) | 4969 if (!m_pLinearizedDict) |
| 4970 return -1; | 4970 return -1; |
| 4971 CPDF_Array* pRange = m_pLinearizedDict->GetArray("H"); | 4971 CPDF_Array* pRange = m_pLinearizedDict->GetArray("H"); |
| 4972 if (!pRange) | 4972 if (!pRange) |
| 4973 return -1; | 4973 return -1; |
| 4974 CPDF_Object* pStreamLen = pRange->GetElementValue(1); | 4974 CPDF_Object* pStreamLen = pRange->GetElementValue(1); |
| 4975 if (!pStreamLen) | 4975 if (!pStreamLen) |
| 4976 return -1; | 4976 return -1; |
| 4977 return pStreamLen->GetInteger(); | 4977 return pStreamLen->GetInteger(); |
| 4978 } | 4978 } |
| OLD | NEW |