[igt-dev] [PATCH i-g-t] debugfs: Fix writing an extra zero out of bounds in igt_crc_to_string_extended()
Maarten Lankhorst
maarten.lankhorst at linux.intel.com
Mon Jan 28 11:54:36 UTC 2019
Signed-off-by: Maarten Lankhorst <maarten.lankhorst at linux.intel.com>
---
lib/igt_debugfs.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/igt_debugfs.c b/lib/igt_debugfs.c
index 3656c66a5674..d1fc0ff7f710 100644
--- a/lib/igt_debugfs.c
+++ b/lib/igt_debugfs.c
@@ -458,17 +458,17 @@ char *igt_crc_to_string_extended(igt_crc_t *crc, char delimiter, int crc_size)
int i;
int len = 0;
int field_width = 2 * crc_size; /* Two chars per byte. */
- char *buf = malloc((field_width+1) * crc->n_words * sizeof(char));
+ char *buf = malloc((field_width+1) * crc->n_words);
if (!buf)
return NULL;
- for (i = 0; i < crc->n_words; i++)
+ for (i = 0; i < crc->n_words - 1; i++)
len += sprintf(buf + len, "%0*x%c", field_width,
crc->crc[i], delimiter);
- /* Eat the last delimiter */
- buf[len - 1] = '\0';
+ sprintf(buf + len, "%0*x", field_width, crc->crc[i]);
+
return buf;
}
--
2.20.1
More information about the igt-dev
mailing list