diff options
author | Robin Watts <robin.watts@artifex.com> | 2016-03-28 11:32:38 +0100 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2016-03-28 12:49:01 +0100 |
commit | 4042aa0732c0fe8c25ba14c6eb647b1bfeaf18f4 (patch) | |
tree | 9bc3fbccfac7aec14eac91a66d5afcdb12b1e72b /source | |
parent | c896e6dfbc4240a4d042dd43a8f66c5127f94707 (diff) | |
download | mupdf-4042aa0732c0fe8c25ba14c6eb647b1bfeaf18f4.tar.xz |
Fix fz_try typo in openssl code.
Diffstat (limited to 'source')
-rw-r--r-- | source/pdf/pdf-pkcs7.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-pkcs7.c b/source/pdf/pdf-pkcs7.c index c63c5f6f..aaa18300 100644 --- a/source/pdf/pdf-pkcs7.c +++ b/source/pdf/pdf-pkcs7.c @@ -681,7 +681,7 @@ int pdf_check_signature(fz_context *ctx, pdf_document *doc, pdf_widget *widget, fz_var(byte_range); fz_var(res); - fz_try(ctx); + fz_try(ctx) { byte_range_len = pdf_signature_widget_byte_range(ctx, doc, widget, NULL); if (byte_range_len) |