summaryrefslogtreecommitdiff
path: root/fitz/base_error.c
diff options
context:
space:
mode:
Diffstat (limited to 'fitz/base_error.c')
-rw-r--r--fitz/base_error.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/fitz/base_error.c b/fitz/base_error.c
index 71a32a2e..606e9c2a 100644
--- a/fitz/base_error.c
+++ b/fitz/base_error.c
@@ -43,6 +43,12 @@ void fz_warn(fz_context *ctx, char *fmt, ...)
/* Error context */
+int fz_too_deeply_nested(fz_context *ctx)
+{
+ fz_error_context *ex = ctx->error;
+ return ex->top + 1 >= nelem(ex->stack);
+}
+
static void throw(fz_error_context *ex)
{
if (ex->top >= 0) {