| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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 "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.h" | 7 #include "core/fpdfapi/fpdf_parser/cpdf_syntax_parser.h" |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 | 623 |
| 624 if (byte1 == '\r' || byte1 == '\n') | 624 if (byte1 == '\r' || byte1 == '\n') |
| 625 return 1; | 625 return 1; |
| 626 | 626 |
| 627 return 0; | 627 return 0; |
| 628 } | 628 } |
| 629 | 629 |
| 630 CPDF_Stream* CPDF_SyntaxParser::ReadStream(CPDF_Dictionary* pDict, | 630 CPDF_Stream* CPDF_SyntaxParser::ReadStream(CPDF_Dictionary* pDict, |
| 631 uint32_t objnum, | 631 uint32_t objnum, |
| 632 uint32_t gennum) { | 632 uint32_t gennum) { |
| 633 CPDF_Object* pLenObj = pDict->GetElement("Length"); | 633 CPDF_Object* pLenObj = pDict->GetObjectBy("Length"); |
| 634 FX_FILESIZE len = -1; | 634 FX_FILESIZE len = -1; |
| 635 CPDF_Reference* pLenObjRef = ToReference(pLenObj); | 635 CPDF_Reference* pLenObjRef = ToReference(pLenObj); |
| 636 | 636 |
| 637 bool differingObjNum = !pLenObjRef || (pLenObjRef->GetObjList() && | 637 bool differingObjNum = !pLenObjRef || (pLenObjRef->GetObjList() && |
| 638 pLenObjRef->GetRefObjNum() != objnum); | 638 pLenObjRef->GetRefObjNum() != objnum); |
| 639 if (pLenObj && differingObjNum) | 639 if (pLenObj && differingObjNum) |
| 640 len = pLenObj->GetInteger(); | 640 len = pLenObj->GetInteger(); |
| 641 | 641 |
| 642 // Locate the start of stream. | 642 // Locate the start of stream. |
| 643 ToNextLine(); | 643 ToNextLine(); |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 981 if (limit && m_Pos == limit) | 981 if (limit && m_Pos == limit) |
| 982 return -1; | 982 return -1; |
| 983 } | 983 } |
| 984 return -1; | 984 return -1; |
| 985 } | 985 } |
| 986 | 986 |
| 987 void CPDF_SyntaxParser::SetEncrypt( | 987 void CPDF_SyntaxParser::SetEncrypt( |
| 988 std::unique_ptr<IPDF_CryptoHandler> pCryptoHandler) { | 988 std::unique_ptr<IPDF_CryptoHandler> pCryptoHandler) { |
| 989 m_pCryptoHandler = std::move(pCryptoHandler); | 989 m_pCryptoHandler = std::move(pCryptoHandler); |
| 990 } | 990 } |
| OLD | NEW |