public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Akinori Hattori" <hattya@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/ee/files/, app-editors/ee/
Date: Sat,  8 Jul 2017 09:57:31 +0000 (UTC)	[thread overview]
Message-ID: <1499507795.f810c9a1e1ea2b5dfe545d3d3b044409bb29487f.hattya@gentoo> (raw)

commit:     f810c9a1e1ea2b5dfe545d3d3b044409bb29487f
Author:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  8 09:55:29 2017 +0000
Commit:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Sat Jul  8 09:56:35 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f810c9a1

app-editors/ee: fix build with -Werror=format-security

Gentoo-Bug: 520518

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-editors/ee/ee-1.5.2.ebuild                 |  5 ++++-
 app-editors/ee/files/ee-Wformat-security.patch | 28 ++++++++++++++++++++++++++
 2 files changed, 32 insertions(+), 1 deletion(-)

diff --git a/app-editors/ee/ee-1.5.2.ebuild b/app-editors/ee/ee-1.5.2.ebuild
index 250c1e87c8a..0d343a67d9e 100644
--- a/app-editors/ee/ee-1.5.2.ebuild
+++ b/app-editors/ee/ee-1.5.2.ebuild
@@ -18,7 +18,10 @@ IUSE=""
 RDEPEND="!app-editors/ersatz-emacs"
 S="${WORKDIR}/easyedit-${PV}"
 
-PATCHES=( "${FILESDIR}"/${PN}-init-location.patch )
+PATCHES=(
+	"${FILESDIR}"/${PN}-init-location.patch
+	"${FILESDIR}"/${PN}-Wformat-security.patch
+)
 DOCS=( Changes README.${PN} ${PN}.i18n.guide ${PN}.msg )
 
 src_prepare() {

diff --git a/app-editors/ee/files/ee-Wformat-security.patch b/app-editors/ee/files/ee-Wformat-security.patch
new file mode 100644
index 00000000000..6db64188347
--- /dev/null
+++ b/app-editors/ee/files/ee-Wformat-security.patch
@@ -0,0 +1,28 @@
+--- a/ee.c
++++ b/ee.c
+@@ -2105,11 +2105,11 @@
+ 		}
+ 		else if (!strcmp("-?", buff))
+ 		{
+-			fprintf(stderr, usage0, arguments[0]);
+-			fprintf(stderr, usage1);
+-			fprintf(stderr, usage2);
+-			fprintf(stderr, usage3);
+-			fprintf(stderr, usage4);
++			fprintf(stderr, "%s", usage0, arguments[0]);
++			fprintf(stderr, "%s", usage1);
++			fprintf(stderr, "%s", usage2);
++			fprintf(stderr, "%s", usage3);
++			fprintf(stderr, "%s", usage4);
+ 			exit(1);
+ 		}
+ 		else if ((*buff == '+') && (start_at_line == NULL))
+@@ -3243,7 +3243,7 @@
+ 	}
+ 	if (shell_fork)
+ 	{
+-		printf(continue_msg);
++		printf("%s", continue_msg);
+ 		fflush(stdout);
+ 		while ((in = getchar()) != '\n')
+ 			;


             reply	other threads:[~2017-07-08  9:57 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-08  9:57 Akinori Hattori [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-07-08  9:57 [gentoo-commits] repo/gentoo:master commit in: app-editors/ee/files/, app-editors/ee/ Akinori Hattori

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1499507795.f810c9a1e1ea2b5dfe545d3d3b044409bb29487f.hattya@gentoo \
    --to=hattya@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox