diff options
author | Niklas Cassel <niklas.cassel@linaro.org> | 2018-08-29 03:57:21 -0400 |
---|---|---|
committer | Andy Gross <andy.gross@linaro.org> | 2018-09-13 17:11:36 -0400 |
commit | 4c96ed170d658d8826d94edec8ac93ee777981a2 (patch) | |
tree | 343f7788d4494f31c60b103cbc0d91cce7d03da1 /tools/perf/scripts/python/export-to-sqlite.py | |
parent | c62615b16c70db8f5e55e326f6d690909afc510f (diff) |
soc: qcom: wcnss_ctrl: Avoid string overflow
'chinfo.name' is used as a NUL-terminated string, but using strncpy() with
the length equal to the buffer size may result in lack of the termination:
drivers//soc/qcom/wcnss_ctrl.c: In function 'qcom_wcnss_open_channel':
drivers//soc/qcom/wcnss_ctrl.c:284:2: warning: 'strncpy' specified bound 32 equals destination size [-Wstringop-truncation]
strncpy(chinfo.name, name, sizeof(chinfo.name));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This changes it to use the safer strscpy() instead.
Signed-off-by: Niklas Cassel <niklas.cassel@linaro.org>
Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: Andy Gross <andy.gross@linaro.org>
Diffstat (limited to 'tools/perf/scripts/python/export-to-sqlite.py')
0 files changed, 0 insertions, 0 deletions