input/trace32_ad: fix potential buffer overflow for unexpected input data
Commit 8c4bff1d25
introduced a routine which prints what mostly should
be text, and avoids non-printable characters. This implementation used an
incorrect format string, which could result in data getting written past
the end of a buffer. Fix the format string.
Этот коммит содержится в:
родитель
090f1e1e54
Коммит
67765e465a
|
@ -120,7 +120,7 @@ static char *printable_name(const char *name)
|
|||
if (g_ascii_isprint(name[i])) {
|
||||
*p++ = name[i];
|
||||
} else {
|
||||
snprintf(p, 5, "\\x%05x", name[i]);
|
||||
snprintf(p, 5, "\\x%02x", name[i]);
|
||||
p += strlen("\\x00");
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче