summaryrefslogtreecommitdiff
path: root/source/fitz/bitmap.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-10-17 16:41:59 +0200
committerTor Andersson <tor.andersson@artifex.com>2017-11-01 13:08:56 +0100
commit1dc763159b03cbd4387713f353f26c890d2c0e52 (patch)
treed43c18deeacd70e23d7e353c8f0c074c87419a34 /source/fitz/bitmap.c
parentf595e889b91a674eb94db7ca4d832da54f5194cd (diff)
downloadmupdf-1dc763159b03cbd4387713f353f26c890d2c0e52.tar.xz
Add separate fz_close_output step.
Closing flushes output and may throw exceptions. Dropping frees the state and never throws exceptions.
Diffstat (limited to 'source/fitz/bitmap.c')
-rw-r--r--source/fitz/bitmap.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/fitz/bitmap.c b/source/fitz/bitmap.c
index cee3a3fa..fe16759c 100644
--- a/source/fitz/bitmap.c
+++ b/source/fitz/bitmap.c
@@ -453,7 +453,10 @@ fz_save_bitmap_as_pbm(fz_context *ctx, fz_bitmap *bitmap, const char *filename)
{
fz_output *out = fz_new_output_with_path(ctx, filename, 0);
fz_try(ctx)
+ {
fz_write_bitmap_as_pbm(ctx, out, bitmap);
+ fz_close_output(ctx, out);
+ }
fz_always(ctx)
fz_drop_output(ctx, out);
fz_catch(ctx)
@@ -465,7 +468,10 @@ fz_save_bitmap_as_pkm(fz_context *ctx, fz_bitmap *bitmap, const char *filename)
{
fz_output *out = fz_new_output_with_path(ctx, filename, 0);
fz_try(ctx)
+ {
fz_write_bitmap_as_pkm(ctx, out, bitmap);
+ fz_close_output(ctx, out);
+ }
fz_always(ctx)
fz_drop_output(ctx, out);
fz_catch(ctx)