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

Bas Nieuwenhuizen bas at basnieuwenhuizen.nl
Mon Oct 30 08:43:40 UTC 2017


Reviewed-by: Bas Nieuwenhuizen <bas at basniewenhuizen.nl>

Won't be in a position to push till the evening though.


On 30 Oct 2017 09:38, "Alex Smith" <asmith at feralinteractive.com> 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);
 }
--
2.13.6
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/mesa-dev/attachments/20171030/d7cb00f2/attachment.html>


More information about the mesa-dev mailing list