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 4966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4997 if (!m_pLinearizedDict) | 4997 if (!m_pLinearizedDict) |
4998 return -1; | 4998 return -1; |
4999 CPDF_Array* pRange = m_pLinearizedDict->GetArray("H"); | 4999 CPDF_Array* pRange = m_pLinearizedDict->GetArray("H"); |
5000 if (!pRange) | 5000 if (!pRange) |
5001 return -1; | 5001 return -1; |
5002 CPDF_Object* pStreamLen = pRange->GetElementValue(1); | 5002 CPDF_Object* pStreamLen = pRange->GetElementValue(1); |
5003 if (!pStreamLen) | 5003 if (!pStreamLen) |
5004 return -1; | 5004 return -1; |
5005 return pStreamLen->GetInteger(); | 5005 return pStreamLen->GetInteger(); |
5006 } | 5006 } |
OLD | NEW |