[Mesa-dev] [PATCH] radv: Fix -Wformat-security issue

Samuel Pitoiset samuel.pitoiset at gmail.com
Mon Oct 30 09:59:52 UTC 2017


Pushed, thanks!

On 10/30/2017 09:38 AM, Alex Smith wrote:
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103513
> Fixes: de889794134e ("radv: Implement VK_AMD_shader_info")
> Signed-off-by: Alex Smith <asmith at feralinteractive.com>
> ---
>   src/amd/vulkan/radv_shader.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/amd/vulkan/radv_shader.c b/src/amd/vulkan/radv_shader.c
> index c9edb28ba2..9162612284 100644
> --- a/src/amd/vulkan/radv_shader.c
> +++ b/src/amd/vulkan/radv_shader.c
> @@ -680,7 +680,7 @@ radv_shader_dump_stats(struct radv_device *device,
>   	generate_shader_stats(device, variant, stage, buf);
>   
>   	fprintf(file, "\n%s:\n", radv_get_shader_name(variant, stage));
> -	fprintf(file, buf->buf);
> +	fprintf(file, "%s", buf->buf);
>   
>   	_mesa_string_buffer_destroy(buf);
>   }
> 


More information about the mesa-dev mailing list