| Index: core/include/fpdfapi/fpdf_parser.h
|
| diff --git a/core/include/fpdfapi/fpdf_parser.h b/core/include/fpdfapi/fpdf_parser.h
|
| index a49fb29d9ca9d5f151bb9e8403018655ecf2f419..ab64c21f2c822de6d9480c435ac3f8beee66d9bf 100644
|
| --- a/core/include/fpdfapi/fpdf_parser.h
|
| +++ b/core/include/fpdfapi/fpdf_parser.h
|
| @@ -297,7 +297,7 @@ class CPDF_SyntaxParser {
|
|
|
| FX_BOOL ReadBlock(uint8_t* pBuf, FX_DWORD size);
|
|
|
| - CFX_ByteString GetNextWord(FX_BOOL& bIsNumber);
|
| + CFX_ByteString GetNextWord(bool* bIsNumber);
|
|
|
| protected:
|
| friend class CPDF_Parser;
|
| @@ -311,7 +311,7 @@ class CPDF_SyntaxParser {
|
|
|
| FX_BOOL GetCharAtBackward(FX_FILESIZE pos, uint8_t& ch);
|
|
|
| - void GetNextWord();
|
| + bool GetNextWordInternal();
|
|
|
| bool IsWholeWord(FX_FILESIZE startpos,
|
| FX_FILESIZE limit,
|
| @@ -353,8 +353,6 @@ class CPDF_SyntaxParser {
|
|
|
| FX_DWORD m_WordSize;
|
|
|
| - FX_BOOL m_bIsNumber;
|
| -
|
| FX_FILESIZE m_dwWordPos;
|
| };
|
|
|
|
|