mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 22:51:42 +00:00
tools/power turbostat: fix possible sprintf buffer overflow
Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
fd3933ca7b
commit
46c2797826
@ -1529,7 +1529,7 @@ int get_mp(int cpu, struct msr_counter *mp, unsigned long long *counterp)
|
||||
if (get_msr(cpu, mp->msr_num, counterp))
|
||||
return -1;
|
||||
} else {
|
||||
char path[128];
|
||||
char path[128 + PATH_BYTES];
|
||||
|
||||
if (mp->flags & SYSFS_PERCPU) {
|
||||
sprintf(path, "/sys/devices/system/cpu/cpu%d/%s",
|
||||
|
Loading…
Reference in New Issue
Block a user