diff options
author | Lei Zhang <thestig@chromium.org> | 2015-10-02 11:26:58 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-10-02 11:26:58 -0700 |
commit | b8a074711108baf04017d86207e08c19ff327d8e (patch) | |
tree | 54fe26a1f9c44d306e70b5b0e594f6629dd40096 /core/include/fpdfapi | |
parent | 9fb70fbded5c0bf4f5313a49fd3496b4d4fa71ca (diff) | |
download | pdfium-b8a074711108baf04017d86207e08c19ff327d8e.tar.xz |
Get rid of gotos in CPDF_SyntaxParser and FlateUncompress().
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1360103002 .
Diffstat (limited to 'core/include/fpdfapi')
-rw-r--r-- | core/include/fpdfapi/fpdf_parser.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/core/include/fpdfapi/fpdf_parser.h b/core/include/fpdfapi/fpdf_parser.h index 6194247568..04c7d90f6f 100644 --- a/core/include/fpdfapi/fpdf_parser.h +++ b/core/include/fpdfapi/fpdf_parser.h @@ -453,10 +453,10 @@ class CPDF_Parser { FX_BOOL LoadAllCrossRefV5(FX_FILESIZE pos); - FX_BOOL LoadCrossRefV4(FX_FILESIZE pos, - FX_FILESIZE streampos, - FX_BOOL bSkip, - FX_BOOL bFirst); + bool LoadCrossRefV4(FX_FILESIZE pos, + FX_FILESIZE streampos, + FX_BOOL bSkip, + FX_BOOL bFirst); FX_BOOL LoadCrossRefV5(FX_FILESIZE pos, FX_FILESIZE& prev, FX_BOOL bMainXRef); @@ -482,6 +482,8 @@ class CPDF_Parser { FX_BOOL IsLinearizedFile(IFX_FileRead* pFileAccess, FX_DWORD offset); + bool FindPosInOffsets(FX_FILESIZE pos) const; + int m_FileVersion; CPDF_Dictionary* m_pTrailer; |