diff options
author | Niklas Cassel <[email protected]> | 2018-08-29 09:57:21 +0200 |
---|---|---|
committer | Andy Gross <[email protected]> | 2018-09-13 16:11:36 -0500 |
commit | 4c96ed170d658d8826d94edec8ac93ee777981a2 (patch) | |
tree | 343f7788d4494f31c60b103cbc0d91cce7d03da1 /tools/perf/scripts/python/export-to-postgresql.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 <[email protected]>
Reviewed-by: Bjorn Andersson <[email protected]>
Signed-off-by: Andy Gross <[email protected]>
Diffstat (limited to 'tools/perf/scripts/python/export-to-postgresql.py')
0 files changed, 0 insertions, 0 deletions