aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/pwc/pwc-v4l.c
diff options
context:
space:
mode:
authorRoel Kluin <roel.kluin@gmail.com>2009-08-08 11:58:52 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-09-12 11:18:50 -0400
commitbd0eb12f61fef7f500e374b8d5068e7556f61901 (patch)
treeecc19872949f6db55c3d8f9e2fd845fdd66a349d /drivers/media/video/pwc/pwc-v4l.c
parenta35c87c7084f3f4972f3ce5f23cfcb34f95341b1 (diff)
V4L/DVB (12435): strlcpy() will always null terminate the string.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Douglas Schilling Landgraf <dougsland@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/pwc/pwc-v4l.c')
-rw-r--r--drivers/media/video/pwc/pwc-v4l.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/pwc/pwc-v4l.c b/drivers/media/video/pwc/pwc-v4l.c
index 2876ce084510..bdb4ced57496 100644
--- a/drivers/media/video/pwc/pwc-v4l.c
+++ b/drivers/media/video/pwc/pwc-v4l.c
@@ -1033,7 +1033,7 @@ long pwc_video_do_ioctl(struct file *file, unsigned int cmd, void *arg)
1033 if (std->index != 0) 1033 if (std->index != 0)
1034 return -EINVAL; 1034 return -EINVAL;
1035 std->id = V4L2_STD_UNKNOWN; 1035 std->id = V4L2_STD_UNKNOWN;
1036 strncpy(std->name, "webcam", sizeof(std->name)); 1036 strlcpy(std->name, "webcam", sizeof(std->name));
1037 return 0; 1037 return 0;
1038 } 1038 }
1039 1039