diff options
author | Matt Holgate <matt@emobix.co.uk> | 2014-06-16 14:37:32 +0100 |
---|---|---|
committer | Matt Holgate <matt@emobix.co.uk> | 2014-06-16 15:16:47 +0100 |
commit | 77315e7139a9b412ab53a7d00cd0b019bd44b497 (patch) | |
tree | a25b415349527225b149e267e0abfa709e97494d | |
parent | b2f096de23e5341fbbcd7c290f3a144423741906 (diff) | |
download | mupdf-77315e7139a9b412ab53a7d00cd0b019bd44b497.tar.xz |
Fix a fatal compiler warning when building with the latest version of the Android NDK
(security issue because a variable is used as a format string with no parameters).
-rw-r--r-- | source/pdf/pdf-op-run.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pdf/pdf-op-run.c b/source/pdf/pdf-op-run.c index 2bea94b7..da881b2e 100644 --- a/source/pdf/pdf-op-run.c +++ b/source/pdf/pdf-op-run.c @@ -1729,7 +1729,7 @@ run_xobject(pdf_csi *csi, void *state, pdf_obj *resources, pdf_xobject *xobj, co /* Rethrow postponed errors */ if (errmess[0]) - fz_throw(ctx, FZ_ERROR_GENERIC, errmess); + fz_throw(ctx, FZ_ERROR_GENERIC, "%s", errmess); } static void pdf_run_BDC(pdf_csi *csi, void *state) |