From 63c8290faf4cec2c25a7ae4addde38ad2e5817f9 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Thu, 7 Jan 2016 13:37:48 +0100 Subject: epub: Fix memory leaks. --- source/html/epub-doc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/html/epub-doc.c') diff --git a/source/html/epub-doc.c b/source/html/epub-doc.c index 34285642..2f09fe50 100644 --- a/source/html/epub-doc.c +++ b/source/html/epub-doc.c @@ -179,6 +179,7 @@ epub_close_document(fz_context *ctx, fz_document *doc_) } fz_drop_archive(ctx, doc->zip); fz_drop_html_font_set(ctx, doc->set); + fz_drop_outline(ctx, doc->outline); fz_free(ctx, doc->dc_title); fz_free(ctx, doc->dc_creator); fz_free(ctx, doc); @@ -423,7 +424,7 @@ epub_init(fz_context *ctx, fz_archive *zip) { epub_document *doc; - doc = fz_malloc_struct(ctx, epub_document); + doc = fz_new_document(ctx, sizeof *doc); doc->zip = zip; doc->set = fz_new_html_font_set(ctx); -- cgit v1.2.3