summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2018-11-07 14:35:56 +0100
committerTor Andersson <tor.andersson@artifex.com>2018-11-07 14:54:40 +0100
commit80540880944bb9c1cdf4d2e955d3f1378dfbacb8 (patch)
treee311abd40c91af1bddb4ac0b15a759229f0894d0 /include
parent135a83731df60dc321ea6a2b66c010f6232530dc (diff)
downloadmupdf-80540880944bb9c1cdf4d2e955d3f1378dfbacb8.tar.xz
Add explicit jmp_buf dereferencing to allow using fz_try from C++.
Diffstat (limited to 'include')
-rw-r--r--include/mupdf/fitz/context.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mupdf/fitz/context.h b/include/mupdf/fitz/context.h
index de83d0e6..d8d5bcc0 100644
--- a/include/mupdf/fitz/context.h
+++ b/include/mupdf/fitz/context.h
@@ -57,12 +57,12 @@ void fz_var_imp(void *);
attention to the man behind the curtain.
*/
-void *fz_push_try(fz_context *ctx);
+fz_jmp_buf *fz_push_try(fz_context *ctx);
int fz_do_try(fz_context *ctx);
int fz_do_always(fz_context *ctx);
int fz_do_catch(fz_context *ctx);
-#define fz_try(ctx) if (!fz_setjmp(fz_push_try(ctx))) if (fz_do_try(ctx)) do
+#define fz_try(ctx) if (!fz_setjmp(*fz_push_try(ctx))) if (fz_do_try(ctx)) do
#define fz_always(ctx) while (0); if (fz_do_always(ctx)) do
#define fz_catch(ctx) while (0); if (fz_do_catch(ctx))