diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2012-02-11 22:56:59 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-02-13 15:24:26 -0800 |
commit | 70142a9dd154f54f7409871ead86f7d77f2c6576 (patch) | |
tree | 03fd5ce309758ae27c0127159e6ab80df998ebd7 /arch/x86 | |
parent | da5a70f3519fd6f73ece3eea261a861c9a4d6bbd (diff) | |
download | linux-70142a9dd154f54f7409871ead86f7d77f2c6576.tar.gz linux-70142a9dd154f54f7409871ead86f7d77f2c6576.tar.bz2 linux-70142a9dd154f54f7409871ead86f7d77f2c6576.zip |
x86/cpu: Fix overrun check in arch_print_cpu_modalias()
snprintf() does not return a negative value when truncating.
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Acked-by: Thomas Renninger <trenn@suse.de>
Acked-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/cpu/match.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/match.c b/arch/x86/kernel/cpu/match.c index 940e2d483076..2dfa52bcdfe2 100644 --- a/arch/x86/kernel/cpu/match.c +++ b/arch/x86/kernel/cpu/match.c @@ -67,7 +67,7 @@ ssize_t arch_print_cpu_modalias(struct device *dev, for (i = 0; i < NCAPINTS*32; i++) { if (boot_cpu_has(i)) { n = snprintf(buf, size, ",%04X", i); - if (n < 0) { + if (n >= size) { WARN(1, "x86 features overflow page\n"); break; } |