diff options
author | Dan Carpenter <error27@gmail.com> | 2010-04-06 01:26:48 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-05-19 11:56:41 -0400 |
commit | b084307c750cb3de4a366aeced1b69ee768c81aa (patch) | |
tree | 82250732359eaac3415404b9583d87e765e8d428 /drivers/media/video/cx23885 | |
parent | 10991235177578ad3793b5d7569e70eb1c50aab2 (diff) |
V4L/DVB: cx23885: strcpy() => strlcpy()
cap->driver is a 16 char buffer and dev->name is a 32 char buffer.
I don't see an actual problem, but we may as well make the static
checkers happy.
Signed-off-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx23885')
-rw-r--r-- | drivers/media/video/cx23885/cx23885-417.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx23885/cx23885-417.c b/drivers/media/video/cx23885/cx23885-417.c index a8ddc227cf86..abd64e89f60f 100644 --- a/drivers/media/video/cx23885/cx23885-417.c +++ b/drivers/media/video/cx23885/cx23885-417.c | |||
@@ -1356,7 +1356,7 @@ static int vidioc_querycap(struct file *file, void *priv, | |||
1356 | struct cx23885_dev *dev = fh->dev; | 1356 | struct cx23885_dev *dev = fh->dev; |
1357 | struct cx23885_tsport *tsport = &dev->ts1; | 1357 | struct cx23885_tsport *tsport = &dev->ts1; |
1358 | 1358 | ||
1359 | strcpy(cap->driver, dev->name); | 1359 | strlcpy(cap->driver, dev->name, sizeof(cap->driver)); |
1360 | strlcpy(cap->card, cx23885_boards[tsport->dev->board].name, | 1360 | strlcpy(cap->card, cx23885_boards[tsport->dev->board].name, |
1361 | sizeof(cap->card)); | 1361 | sizeof(cap->card)); |
1362 | sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci)); | 1362 | sprintf(cap->bus_info, "PCI:%s", pci_name(dev->pci)); |