qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] Fix compilation with -Werror=format-security


From: Lennert Buytenhek
Subject: Re: [Qemu-devel] Fix compilation with -Werror=format-security
Date: Sat, 27 Dec 2008 21:04:36 +0100
User-agent: Mutt/1.4.2.2i

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?




reply via email to

[Prev in Thread] Current Thread [Next in Thread]