summaryrefslogtreecommitdiff
path: root/source/pdf/pdf-xref.c
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2016-07-13 18:11:45 +0100
committerRobin Watts <robin.watts@artifex.com>2016-07-13 18:22:32 +0100
commit21e188013cc9535c8e8615d58a4afa3bca65f544 (patch)
tree951b4f43bc8be18854c9fd55169ff3d9fc1aaf8e /source/pdf/pdf-xref.c
parentab770bef466d03bfcabef6d4429efc1e8d50557f (diff)
downloadmupdf-21e188013cc9535c8e8615d58a4afa3bca65f544.tar.xz
Bug 696892: PDF annotation appearance stream synthesis SEGV
The code would SEGV if we were trying to synthesise an appearance stream for an annotation, and the docs pdf resources table had not been initialised. We now intialise the pdf resource tables when we initialise a pdf device. This is the earliest point we know we are going to need them, and covers all cases.
Diffstat (limited to 'source/pdf/pdf-xref.c')
-rw-r--r--source/pdf/pdf-xref.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/pdf/pdf-xref.c b/source/pdf/pdf-xref.c
index 01b72d04..576c315d 100644
--- a/source/pdf/pdf-xref.c
+++ b/source/pdf/pdf-xref.c
@@ -2770,7 +2770,6 @@ pdf_document *pdf_create_document(fz_context *ctx)
doc->num_incremental_sections = 0;
doc->xref_base = 0;
doc->disallow_new_increments = 0;
- pdf_init_resource_tables(ctx, doc);
pdf_get_populating_xref_entry(ctx, doc, 0);
trailer = pdf_new_dict(ctx, doc, 2);
pdf_dict_put_drop(ctx, trailer, PDF_NAME_Size, pdf_new_int(ctx, doc, 3));