mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
dm: serial: fix serial_post_probe()
The size of the name of a udevice is not limited.
When setting the fixed sized name field of a stdio device we must ensure
that the target string is NUL terminated to avoid buffer overflows.
Fixes: 57d92753d4
("dm: Add a uclass for serial devices")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
6826c432e3
commit
6a1e0ae43e
1 changed files with 1 additions and 1 deletions
|
@ -520,7 +520,7 @@ static int serial_post_probe(struct udevice *dev)
|
|||
return 0;
|
||||
memset(&sdev, '\0', sizeof(sdev));
|
||||
|
||||
strncpy(sdev.name, dev->name, sizeof(sdev.name));
|
||||
strlcpy(sdev.name, dev->name, sizeof(sdev.name));
|
||||
sdev.flags = DEV_FLAGS_OUTPUT | DEV_FLAGS_INPUT | DEV_FLAGS_DM;
|
||||
sdev.priv = dev;
|
||||
sdev.putc = serial_stub_putc;
|
||||
|
|
Loading…
Add table
Reference in a new issue