mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
Merge pull request #11335 from Snuffleupagus/issue-11330
Subtract `stream.start` when getting the `startXRef` property for documents with a Linearization dictionary (issue 11330)
This commit is contained in:
commit
be02e67972
3 changed files with 10 additions and 1 deletions
|
@ -453,7 +453,7 @@ class PDFDocument {
|
|||
// Find the end of the first object.
|
||||
stream.reset();
|
||||
if (find(stream, 'endobj', 1024)) {
|
||||
startXRef = stream.pos + 6;
|
||||
startXRef = (stream.pos + 6) - stream.start;
|
||||
}
|
||||
} else {
|
||||
// Find `startxref` by checking backwards from the end of the file.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue