[Mesa-dev] [PATCH] radv: Fix -Wformat-security issue
Alex Smith
asmith at feralinteractive.com
Mon Oct 30 08:38:14 UTC 2017
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
More information about the mesa-dev
mailing list