mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-12 05:12:26 -05:00
[media] go7007: using strlcpy instead of strncpy
For NUL terminated string, need always set '\0' in the end. Signed-off-by: Chen Gang <gang.chen@asianux.com> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
70f31c91e1
commit
136d9f3a41
@@ -466,7 +466,7 @@ static int saa7134_go7007_init(struct saa7134_dev *dev)
|
||||
|
||||
go->board_id = GO7007_BOARDID_PCI_VOYAGER;
|
||||
snprintf(go->bus_info, sizeof(go->bus_info), "PCI:%s", pci_name(dev->pci));
|
||||
strncpy(go->name, saa7134_boards[dev->board].name, sizeof(go->name));
|
||||
strlcpy(go->name, saa7134_boards[dev->board].name, sizeof(go->name));
|
||||
go->hpi_ops = &saa7134_go7007_hpi_ops;
|
||||
go->hpi_context = saa;
|
||||
saa->dev = dev;
|
||||
|
||||
Reference in New Issue
Block a user