]> git.baikalelectronics.ru Git - kernel.git/commit
ipmi: use correct string length
authorXiongfeng Wang <xiongfeng.wang@linaro.org>
Mon, 8 Jan 2018 12:01:32 +0000 (20:01 +0800)
committerCorey Minyard <cminyard@mvista.com>
Tue, 9 Jan 2018 02:02:47 +0000 (20:02 -0600)
commit1b4254cee0643ae624d33481b5107b790ae581b9
tree1140e7da6fb24f876b33173403e3ab4f9d2694fa
parent174134ac760275457bb0d1560a0dbe6cf8a12ad6
ipmi: use correct string length

gcc-8 reports

drivers/char/ipmi/ipmi_msghandler.c: In function
'panic_op_write_handler':
./include/linux/string.h:245:9: warning: '__builtin_strncpy' specified
bound 16 equals destination size [-Wstringop-truncation]

drivers/char/ipmi/ipmi_watchdog.c: In function 'set_param_str':
./include/linux/string.h:245:9: warning: '__builtin_strncpy' specified
bound 16 equals destination size [-Wstringop-truncation]

We need one less byte or call strlcpy() to make it a nul-terminated
string.

Signed-off-by: Xiongfeng Wang <xiongfeng.wang@linaro.org>
Signed-off-by: Corey Minyard <cminyard@mvista.com>
drivers/char/ipmi/ipmi_msghandler.c
drivers/char/ipmi/ipmi_watchdog.c