From bbcc85a9f746c161b2e23c6057e69ec7b967252b Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 28 Dec 2016 13:19:47 +0100 Subject: Add fz_terminate_buffer function. Non-destructively zero terminate a fz_buffer for use as a C string. --- source/html/html-doc.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'source/html/html-doc.c') diff --git a/source/html/html-doc.c b/source/html/html-doc.c index 05a86d83..c19d5049 100644 --- a/source/html/html-doc.c +++ b/source/html/html-doc.c @@ -139,12 +139,8 @@ htdoc_open_document_with_stream(fz_context *ctx, fz_stream *file) doc->set = fz_new_html_font_set(ctx); buf = fz_read_all(ctx, file, 0); - fz_try(ctx) - { - fz_write_buffer_byte(ctx, buf, 0); doc->html = fz_parse_html(ctx, doc->set, doc->zip, ".", buf, fz_user_css(ctx)); - } fz_always(ctx) fz_drop_buffer(ctx, buf); fz_catch(ctx) @@ -175,12 +171,8 @@ htdoc_open_document(fz_context *ctx, const char *filename) doc->set = fz_new_html_font_set(ctx); buf = fz_read_file(ctx, filename); - fz_try(ctx) - { - fz_write_buffer_byte(ctx, buf, 0); doc->html = fz_parse_html(ctx, doc->set, doc->zip, ".", buf, fz_user_css(ctx)); - } fz_always(ctx) fz_drop_buffer(ctx, buf); fz_catch(ctx) -- cgit v1.2.3