ParseObject: Fix "xref" skipping

This commit is contained in:
2016-06-21 01:31:26 +02:00
parent 75582de5e4
commit c41c541149

View File

@@ -816,9 +816,11 @@ namespace VAR.PdfTools
if (token == "xref")
{
// FIXME: Ignoring xref for now
SkipToEndOfLine();
SkipEndOfLine();
do
{
SkipWhitespace();
IPdfElement objNumber = ParseNumber();
SkipWhitespace();
objNumber = ParseNumber();