summaryrefslogtreecommitdiff
path: root/source/pdf/pdf-interpret.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2016-03-22 17:03:31 +0100
committerTor Andersson <tor.andersson@artifex.com>2016-03-23 15:58:47 +0100
commit005ab6e5a14f8b6df450a5374315f1e017e4f1ed (patch)
treea624b87285c4e04ead688f4cff6daea895e48a98 /source/pdf/pdf-interpret.c
parentb2c3d9e7ca40e001d3ee18975427224b726dc4d1 (diff)
downloadmupdf-005ab6e5a14f8b6df450a5374315f1e017e4f1ed.tar.xz
Remove internal do/while braces in fz_try macros.
This has caught a couple of oddities...
Diffstat (limited to 'source/pdf/pdf-interpret.c')
-rw-r--r--source/pdf/pdf-interpret.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-interpret.c b/source/pdf/pdf-interpret.c
index 715a0f12..64a60e06 100644
--- a/source/pdf/pdf-interpret.c
+++ b/source/pdf/pdf-interpret.c
@@ -862,7 +862,7 @@ pdf_process_keyword(fz_context *ctx, pdf_processor *proc, pdf_csi *csi, fz_strea
fz_throw(ctx, FZ_ERROR_GENERIC, "cannot find Font resource '%s'", csi->name);
font = load_font_or_hail_mary(ctx, csi->doc, csi->rdb, fontobj, 0, csi->cookie);
fz_try(ctx)
- proc->op_Tf(ctx, proc, csi->name, font, s[0]); break;
+ proc->op_Tf(ctx, proc, csi->name, font, s[0]);
fz_always(ctx)
pdf_drop_font(ctx, font);
fz_catch(ctx)