diff options
author | Len Brown | 2017-12-08 17:38:17 -0500 |
---|---|---|
committer | Len Brown | 2018-06-01 17:14:56 -0400 |
commit | 46c2797826cc6d1ae36fcbd966e76f9fa1907eef (patch) | |
tree | 3f82fdb109ff607bb7ee310477407e681e3fbb35 | |
parent | fd3933ca7bcf500f7f204d16f670b64cceb11898 (diff) |
tools/power turbostat: fix possible sprintf buffer overflow
Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r-- | tools/power/x86/turbostat/turbostat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index 32f3a33a9850..59742600b7eb 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c @@ -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", |