summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorMasami Hiramatsu <masami.hiramatsu@linaro.org>2022-01-31 05:52:20 +0300
committerTom Rini <trini@konsulko.com>2022-02-11 19:29:23 +0300
commitd8ae90a8d47da2f22041bf9f6fd6d42a598f44ee (patch)
tree1ac6a6f17975e6cdb5653a1adffdfa6c3a1cb8c4 /drivers
parent32a711dbdbec9aed6777d1059d115b1c83d36fca (diff)
downloadu-boot-d8ae90a8d47da2f22041bf9f6fd6d42a598f44ee.tar.xz
DFU: Do not copy the entity name over the buffer size
Use strlcpy() instead of strcpy() to prevent copying the entity name over the name buffer size. Signed-off-by: Masami Hiramatsu <masami.hiramatsu@linaro.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/dfu/dfu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dfu/dfu.c b/drivers/dfu/dfu.c
index af3975925a..66c41b5e76 100644
--- a/drivers/dfu/dfu.c
+++ b/drivers/dfu/dfu.c
@@ -503,7 +503,7 @@ static int dfu_fill_entity(struct dfu_entity *dfu, char *s, int alt,
debug("%s: %s interface: %s dev: %s\n", __func__, s, interface, devstr);
st = strsep(&s, " ");
- strcpy(dfu->name, st);
+ strlcpy(dfu->name, st, DFU_NAME_SIZE);
dfu->alt = alt;
dfu->max_buf_size = 0;