| Index: core/src/fpdfapi/fpdf_parser/fpdf_parser_parser.cpp
|
| diff --git a/core/src/fpdfapi/fpdf_parser/fpdf_parser_parser.cpp b/core/src/fpdfapi/fpdf_parser/fpdf_parser_parser.cpp
|
| index e0cb8277d716b7d53ac17139e5328da5e530ca62..a57771742aabec3327f6f634584406b30869544c 100644
|
| --- a/core/src/fpdfapi/fpdf_parser/fpdf_parser_parser.cpp
|
| +++ b/core/src/fpdfapi/fpdf_parser/fpdf_parser_parser.cpp
|
| @@ -1681,11 +1681,7 @@ CPDF_SyntaxParser::CPDF_SyntaxParser()
|
| m_pFileBuf = NULL;
|
| m_MetadataObjnum = 0;
|
| m_dwWordPos = 0;
|
| -#if defined(_FPDFAPI_MINI_)
|
| - m_bFileStream = TRUE;
|
| -#else
|
| m_bFileStream = FALSE;
|
| -#endif
|
| }
|
| CPDF_SyntaxParser::~CPDF_SyntaxParser()
|
| {
|
| @@ -2473,10 +2469,6 @@ CPDF_Stream* CPDF_SyntaxParser::ReadStream(CPDF_Dictionary* pDict, PARSE_CONTEXT
|
| m_Pos = StreamStartPos;
|
| }
|
| CPDF_Stream* pStream;
|
| -#if defined(_FPDFAPI_MINI_) && !defined(_FXCORE_FEATURE_ALL_)
|
| - pStream = FX_NEW CPDF_Stream(m_pFileAccess, pCryptoHandler, m_HeaderOffset + m_Pos, len, pDict, gennum);
|
| - m_Pos += len;
|
| -#else
|
| FX_LPBYTE pData = FX_Alloc(FX_BYTE, len);
|
| if (!pData) {
|
| return NULL;
|
| @@ -2494,7 +2486,6 @@ CPDF_Stream* CPDF_SyntaxParser::ReadStream(CPDF_Dictionary* pDict, PARSE_CONTEXT
|
| dest_buf.DetachBuffer();
|
| }
|
| pStream = FX_NEW CPDF_Stream(pData, len, pDict);
|
| -#endif
|
| if (pContext) {
|
| pContext->m_DataEnd = pContext->m_DataStart + len;
|
| }
|
|
|