lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CA+M3ks58Mm5cjd2uxFWoABD54AQHpYv+kMHiLrso2YVgCja0hQ@mail.gmail.com>
Date:   Tue, 9 May 2017 12:01:54 +0200
From:   Benjamin Gaignard <benjamin.gaignard@...aro.org>
To:     Nicolas Iooss <nicolas.iooss_linux@....org>
Cc:     Vincent Abriou <vincent.abriou@...com>,
        "dri-devel@...ts.freedesktop.org" <dri-devel@...ts.freedesktop.org>,
        Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 1/1] drm/sti: use seq_puts to display a string

2017-03-31 21:25 GMT+02:00 Nicolas Iooss <nicolas.iooss_linux@....org>:
> gdp_dbg_ctl() uses seq_printf() to display a color format name even
> though there is no format string. When using -Wformat-string, gcc
> reports the following warning:
>
>     drivers/gpu/drm/sti/sti_gdp.c: In function 'gdp_dbg_ctl':
>     drivers/gpu/drm/sti/sti_gdp.c:150:18: warning: format not a string
>     literal and no format arguments [-Wformat-security]
>         seq_printf(s, gdp_format_to_str[i].name);
>                       ^~~~~~~~~~~~~~~~~
>
> Silence this warning by using seq_puts() instead.
>
> Signed-off-by: Nicolas Iooss <nicolas.iooss_linux@....org>
> ---
>  drivers/gpu/drm/sti/sti_gdp.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/sti/sti_gdp.c b/drivers/gpu/drm/sti/sti_gdp.c
> index 86279f5022c2..1bbfcf01d401 100644
> --- a/drivers/gpu/drm/sti/sti_gdp.c
> +++ b/drivers/gpu/drm/sti/sti_gdp.c
> @@ -147,7 +147,7 @@ static void gdp_dbg_ctl(struct seq_file *s, int val)
>         seq_puts(s, "\tColor:");
>         for (i = 0; i < ARRAY_SIZE(gdp_format_to_str); i++) {
>                 if (gdp_format_to_str[i].format == (val & 0x1F)) {
> -                       seq_printf(s, gdp_format_to_str[i].name);
> +                       seq_puts(s, gdp_format_to_str[i].name);
>                         break;
>                 }
>         }
> --
> 2.11.1
>

Acked-by: Benjamin Gaignard <benjamin.gaignard@...aro.org>

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ