Skip to content

Commit

Permalink
app-text/mupdf: fix format-security (bug 556830).
Browse files Browse the repository at this point in the history
Package-Manager: portage-2.2.20
  • Loading branch information
xmw committed Aug 10, 2015
1 parent 4211aaf commit 1dc8daf
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
22 changes: 22 additions & 0 deletions app-text/mupdf/files/mupdf-1.5-format-security-error.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
From: =?utf-8?q?=22Kan-Ru_Chen_=28=E9=99=B3=E4=BE=83=E5=A6=82=29=22?=
<[email protected]>
Date: Sat, 20 Sep 2014 13:12:16 +0800
Subject: Fix -Werror=format-security error

---
source/pdf/pdf-op-run.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/pdf/pdf-op-run.c b/source/pdf/pdf-op-run.c
index 2bea94b..da881b2 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)
3 changes: 2 additions & 1 deletion app-text/mupdf/mupdf-1.5-r1.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ src_prepare() {
"${FILESDIR}"/${PN}-1.3-CFLAGS.patch \
"${FILESDIR}"/${PN}-1.5-old-debian-files.patch \
"${FILESDIR}"/${PN}-1.3-pkg-config.patch \
"${FILESDIR}"/${PN}-1.5-Makerules-openssl-curl.patch
"${FILESDIR}"/${PN}-1.5-Makerules-openssl-curl.patch \
"${FILESDIR}"/${PN}-1.5-format-security-error.patch

if has_version ">=media-libs/openjpeg-2.1:2" ; then
epatch \
Expand Down

0 comments on commit 1dc8daf

Please sign in to comment.