diff options
| author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2019-04-22 12:21:06 -0400 |
|---|---|---|
| committer | Daniel Thompson <daniel.thompson@linaro.org> | 2019-05-02 08:42:01 -0400 |
| commit | 9b555c4d784c468b4167eef9ab621b5203e4f479 (patch) | |
| tree | 3afdea84bab9fc993497c06aefc6ac8c3c8fd753 | |
| parent | 4cc168eaf3b67d76547fb420c22abe22a3c86003 (diff) | |
kdb: kdb_support: replace strcpy() by strscpy()
The strcpy() function is being deprecated. Replace it by the safer
strscpy() and fix the following Coverity warning:
"You might overrun the 129-character fixed-size string ks_namebuf
by copying name without checking the length."
Addresses-Coverity-ID: 138995 ("Copy into fixed size buffer")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
| -rw-r--r-- | kernel/debug/kdb/kdb_support.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/debug/kdb/kdb_support.c b/kernel/debug/kdb/kdb_support.c index 50bf9b119bad..b8e6306e7e13 100644 --- a/kernel/debug/kdb/kdb_support.c +++ b/kernel/debug/kdb/kdb_support.c | |||
| @@ -192,7 +192,7 @@ int kallsyms_symbol_complete(char *prefix_name, int max_len) | |||
| 192 | 192 | ||
| 193 | while ((name = kdb_walk_kallsyms(&pos))) { | 193 | while ((name = kdb_walk_kallsyms(&pos))) { |
| 194 | if (strncmp(name, prefix_name, prefix_len) == 0) { | 194 | if (strncmp(name, prefix_name, prefix_len) == 0) { |
| 195 | strcpy(ks_namebuf, name); | 195 | strscpy(ks_namebuf, name, sizeof(ks_namebuf)); |
| 196 | /* Work out the longest name that matches the prefix */ | 196 | /* Work out the longest name that matches the prefix */ |
| 197 | if (++number == 1) { | 197 | if (++number == 1) { |
| 198 | prev_len = min_t(int, max_len-1, | 198 | prev_len = min_t(int, max_len-1, |
