diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2016-12-14 18:23:19 +0100 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2016-12-16 02:16:58 +0100 |
commit | 3028faf84e0f0f32419fa0cd0319b60bab6cf95d (patch) | |
tree | 79594bd1ebd6da34cff5aad4fe2251b29b8a8016 /include | |
parent | 7a737ecb89f3da42119487ac85aab3ba59bb335a (diff) | |
download | mupdf-3028faf84e0f0f32419fa0cd0319b60bab6cf95d.tar.xz |
Bug 697412: When repairing, forget the previous xref.
Diffstat (limited to 'include')
-rw-r--r-- | include/mupdf/pdf/document.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mupdf/pdf/document.h b/include/mupdf/pdf/document.h index bf5d61b8..231ab8b7 100644 --- a/include/mupdf/pdf/document.h +++ b/include/mupdf/pdf/document.h @@ -553,10 +553,12 @@ struct pdf_document_s int max_xref_len; int num_xref_sections; + int saved_num_xref_sections; int num_incremental_sections; int xref_base; int disallow_new_increments; pdf_xref *xref_sections; + pdf_xref *saved_xref_sections; int *xref_index; int freeze_updates; int has_xref_streams; |