diff options
author | Sebastian Rasmussen <sebras@gmail.com> | 2016-10-01 13:03:30 +0800 |
---|---|---|
committer | Sebastian Rasmussen <sebras@gmail.com> | 2016-10-09 13:18:47 +0800 |
commit | 2255281844adfebbab86374f10c9c4ab203c453c (patch) | |
tree | ba7189b6e93c3ef0f4ffae32cdde07f34346a56d /source | |
parent | 86828fabd82ab71f06bfc074249563ad4bf401cf (diff) | |
download | mupdf-2255281844adfebbab86374f10c9c4ab203c453c.tar.xz |
html: Add missing function pointer when opening as stream.
Diffstat (limited to 'source')
-rw-r--r-- | source/html/html-doc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source/html/html-doc.c b/source/html/html-doc.c index 733dd620..3567723e 100644 --- a/source/html/html-doc.c +++ b/source/html/html-doc.c @@ -123,6 +123,7 @@ htdoc_open_document_with_stream(fz_context *ctx, fz_stream *file) doc->super.layout = htdoc_layout; doc->super.count_pages = htdoc_count_pages; doc->super.load_page = htdoc_load_page; + doc->super.lookup_metadata = htdoc_lookup_metadata; doc->super.is_reflowable = 1; doc->zip = fz_open_directory(ctx, "."); |