From: "Blue Swirl" <blauwirbel@gmail.com>
To: qemu-devel@nongnu.org
Cc: kvm@vger.kernel.org
Subject: Re: [Qemu-devel] Fix compilation with -Werror=format-security
Date: Sun, 28 Dec 2008 15:24:22 +0200 [thread overview]
Message-ID: <f43fc5580812280524g2b67d9b0ua43481997fe904a7@mail.gmail.com> (raw)
In-Reply-To: <20081227200436.GK16751@xi.wantstofly.org>
On 12/27/08, Lennert Buytenhek <buytenh@wantstofly.org> wrote:
> On Sat, Dec 27, 2008 at 07:52:39PM +0000, Frederik Himpe wrote:
>
> > Mandriva is now using the -Werror=format-security CFLAG by default. To
> > make kvm 82 compile with this option, I had to apply this patch:
> > http://svn.mandriva.com/cgi-bin/viewvc.cgi/packages/cooker/kvm/current/SOURCES/kvm-82-format-string.patch?view=co
>
>
> diff -ur kvm-82.orig/qemu/monitor.c kvm-82/qemu/monitor.c
> --- kvm-82.orig/qemu/monitor.c 2008-12-24 15:24:58.000000000 +0100
> +++ kvm-82/qemu/monitor.c 2008-12-27 20:19:32.000000000 +0100
> @@ -1975,7 +1975,7 @@
>
> static void expr_error(const char *fmt)
> {
> - term_printf(fmt);
> + term_printf("%s", fmt);
> term_printf("\n");
> longjmp(expr_env, 1);
> }
>
> Why not make this term_printf("%s\n", fmt); while you're at it?
Thanks, I combined these to form r6134. As "fmt" no longer describes
the parameter, I changed that to "msg".
prev parent reply other threads:[~2008-12-28 13:24 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-12-27 19:52 [Qemu-devel] Fix compilation with -Werror=format-security Frederik Himpe
2008-12-27 20:04 ` Lennert Buytenhek
2008-12-28 13:24 ` Blue Swirl [this message]
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=f43fc5580812280524g2b67d9b0ua43481997fe904a7@mail.gmail.com \
--to=blauwirbel@gmail.com \
--cc=kvm@vger.kernel.org \
--cc=qemu-devel@nongnu.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;
as well as URLs for NNTP newsgroup(s).