summaryrefslogtreecommitdiff
path: root/source
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 /source
parent135a83731df60dc321ea6a2b66c010f6232530dc (diff)
downloadmupdf-80540880944bb9c1cdf4d2e955d3f1378dfbacb8.tar.xz
Add explicit jmp_buf dereferencing to allow using fz_try from C++.
Diffstat (limited to 'source')
-rw-r--r--source/fitz/error.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/fitz/error.c b/source/fitz/error.c
index 8f4d6f50..ddbde925 100644
--- a/source/fitz/error.c
+++ b/source/fitz/error.c
@@ -123,7 +123,7 @@ FZ_NORETURN static void throw(fz_context *ctx)
}
}
-void *fz_push_try(fz_context *ctx)
+fz_jmp_buf *fz_push_try(fz_context *ctx)
{
/* If we would overflow the exception stack, throw an exception instead
* of entering the try block. We assume that we always have room for
@@ -154,7 +154,7 @@ void *fz_push_try(fz_context *ctx)
ctx->error->top++;
ctx->error->top->code = 0;
}
- return ctx->error->top->buffer;
+ return &ctx->error->top->buffer;
}
int fz_do_try(fz_context *ctx)