gallivm: Fix potential buffer overflowing in strncat.
authorJohannes Obermayr <johannesobermayr@gmx.de>
Thu, 28 Jun 2012 08:16:47 +0000 (10:16 +0200)
committerJosé Fonseca <jfonseca@vmware.com>
Thu, 28 Jun 2012 10:47:23 +0000 (11:47 +0100)
Signed-off-by: José Fonseca <jfonseca@vmware.com>
src/gallium/auxiliary/gallivm/lp_bld_printf.c

index 16ef25a8a39c39217296337c319f80599f868307..8549b87a1c766ec6e63d53f7d991d4592ced0b25 100644 (file)
@@ -118,16 +118,16 @@ lp_build_print_value(struct gallivm_state *gallivm,
 
    params[1] = lp_build_const_string(gallivm, msg);
    if (length == 1) {
-      util_strncat(format, type_fmt, sizeof format);
+      util_strncat(format, type_fmt, sizeof(format) - strlen(format) - 1);
       params[2] = value;
    } else {
       for (i = 0; i < length; ++i) {
-         util_strncat(format, type_fmt, sizeof format);
+         util_strncat(format, type_fmt, sizeof(format) - strlen(format) - 1);
          params[2 + i] = LLVMBuildExtractElement(builder, value, lp_build_const_int32(gallivm, i), "");
       }
    }
 
-   util_strncat(format, "\n", sizeof format);
+   util_strncat(format, "\n", sizeof(format) - strlen(format) - 1);
 
    params[0] = lp_build_const_string(gallivm, format);
    return lp_build_print_args(gallivm, 2 + length, params);