diff options
Diffstat (limited to 'pdf/pdf_xref.c')
-rw-r--r-- | pdf/pdf_xref.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pdf/pdf_xref.c b/pdf/pdf_xref.c index c78a9ec7..5182a263 100644 --- a/pdf/pdf_xref.c +++ b/pdf/pdf_xref.c @@ -1294,7 +1294,8 @@ pdf_new_document(fz_context *ctx, fz_stream *file) doc->super.first_annot = (void*)pdf_first_annot; doc->super.next_annot = (void*)pdf_next_annot; doc->super.bound_annot = (void*)pdf_bound_annot; - doc->super.run_page = NULL; /* see pdf_xref_aux.c */ + doc->super.run_page_contents = NULL; /* see pdf_xref_aux.c */ + doc->super.run_annot = NULL; /* see pdf_xref_aux.c */ doc->super.free_page = (void*)pdf_free_page; doc->super.meta = (void*)pdf_meta; doc->super.page_presentation = (void*)pdf_page_presentation; |