diff options
author | Douglas Schilling Landgraf <dougsland@redhat.com> | 2009-08-08 12:58:52 -0300 |
---|---|---|
committer | Douglas Schilling Landgraf <dougsland@redhat.com> | 2009-08-08 12:58:52 -0300 |
commit | d029b650929bd8c6cda3c88135a3b754ca6ae0bb (patch) | |
tree | 6f5f58ff139820367100377d61918bd916ff1e48 /linux/drivers/media/video/pwc/pwc-v4l.c | |
parent | 672911c86336621bf8d82bb070c84d7082e53a05 (diff) | |
download | mediapointer-dvb-s2-d029b650929bd8c6cda3c88135a3b754ca6ae0bb.tar.gz mediapointer-dvb-s2-d029b650929bd8c6cda3c88135a3b754ca6ae0bb.tar.bz2 |
strlcpy() will always null terminate the string.
From: Roel Kluin <roel.kluin@gmail.com>
Priority: normal
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>
Diffstat (limited to 'linux/drivers/media/video/pwc/pwc-v4l.c')
-rw-r--r-- | linux/drivers/media/video/pwc/pwc-v4l.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/pwc/pwc-v4l.c b/linux/drivers/media/video/pwc/pwc-v4l.c index 2876ce084..bdb4ced57 100644 --- a/linux/drivers/media/video/pwc/pwc-v4l.c +++ b/linux/drivers/media/video/pwc/pwc-v4l.c @@ -1033,7 +1033,7 @@ long pwc_video_do_ioctl(struct file *file, unsigned int cmd, void *arg) if (std->index != 0) return -EINVAL; std->id = V4L2_STD_UNKNOWN; - strncpy(std->name, "webcam", sizeof(std->name)); + strlcpy(std->name, "webcam", sizeof(std->name)); return 0; } |