diff options
author | Paul Gardiner <paul.gardiner@artifex.com> | 2015-08-20 15:52:59 +0100 |
---|---|---|
committer | Paul Gardiner <paul.gardiner@artifex.com> | 2015-08-27 15:16:51 +0100 |
commit | e5e3cb777043d6ec4759e9e24950123b70a377e5 (patch) | |
tree | 9f84321b5ba2e557717dec4d1126b0630b577735 /include | |
parent | b3dab7e0ff1db43c5bc2cc306a0f6c1507125c4d (diff) | |
download | mupdf-e5e3cb777043d6ec4759e9e24950123b70a377e5.tar.xz |
Ensure the unsaved signatures list is held in ascending order
This is work towards bug #696123. It does not fix the bug because, in fact,
saving multiple signatures in one go is not permitted (they need to use
several incremental saves), but we may as well have the order correctly
held.
Diffstat (limited to 'include')
-rw-r--r-- | include/mupdf/pdf/document.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mupdf/pdf/document.h b/include/mupdf/pdf/document.h index 8f2c6ef6..668a9d13 100644 --- a/include/mupdf/pdf/document.h +++ b/include/mupdf/pdf/document.h @@ -245,6 +245,7 @@ struct pdf_document_s int recalculating; int dirty; pdf_unsaved_sig *unsaved_sigs; + pdf_unsaved_sig **unsaved_sigs_end; void (*update_appearance)(fz_context *ctx, pdf_document *doc, pdf_annot *annot); |