summaryrefslogtreecommitdiff
path: root/source/pdf/js/pdf-js.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/pdf/js/pdf-js.c')
-rw-r--r--source/pdf/js/pdf-js.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/pdf/js/pdf-js.c b/source/pdf/js/pdf-js.c
index 26c6d6f8..d801716a 100644
--- a/source/pdf/js/pdf-js.c
+++ b/source/pdf/js/pdf-js.c
@@ -492,7 +492,7 @@ static pdf_jsimp_obj *doc_getField(void *jsctx, void *obj, int argc, pdf_jsimp_o
}
fz_catch(ctx)
{
- /* FIXME: TryLater ? */
+ fz_rethrow_if(ctx, FZ_ERROR_TRYLATER);
fz_warn(ctx, "doc_getField failed: %s", fz_caught_message(ctx));
dict = NULL;
}
@@ -832,7 +832,7 @@ void pdf_js_load_document_level(pdf_js *js)
}
fz_catch(ctx)
{
- /* FIXME: TryLater ? */
+ fz_rethrow_if(ctx, FZ_ERROR_TRYLATER);
fz_warn(ctx, "Warning: %s", fz_caught_message(ctx));
}
}