diff options
author | Dan Carpenter <error27@gmail.com> | 2010-05-24 17:33:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-25 11:07:08 -0400 |
commit | dbd536bf2f1b494240b56035ee16eba2e3d89b6a (patch) | |
tree | e34e02565a58ede4a25e270768775ae2899e819b /drivers/video/sis | |
parent | fbd65e0ecdeffe5e50ad850fb7240888b1af6b22 (diff) |
sis: strcpy() => strlcpy()
These are different size buffers (40 chars vs 16), we may as well be
cautious.
Signed-off-by: Dan Carpenter <error27@gmail.com>
Cc: Thomas Winischhofer <thomas@winischhofer.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/sis')
-rw-r--r-- | drivers/video/sis/sis_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/sis/sis_main.c b/drivers/video/sis/sis_main.c index a531a0f7cdf2..559bf1727a2b 100644 --- a/drivers/video/sis/sis_main.c +++ b/drivers/video/sis/sis_main.c | |||
@@ -1845,7 +1845,7 @@ sisfb_get_fix(struct fb_fix_screeninfo *fix, int con, struct fb_info *info) | |||
1845 | 1845 | ||
1846 | memset(fix, 0, sizeof(struct fb_fix_screeninfo)); | 1846 | memset(fix, 0, sizeof(struct fb_fix_screeninfo)); |
1847 | 1847 | ||
1848 | strcpy(fix->id, ivideo->myid); | 1848 | strlcpy(fix->id, ivideo->myid, sizeof(fix->id)); |
1849 | 1849 | ||
1850 | mutex_lock(&info->mm_lock); | 1850 | mutex_lock(&info->mm_lock); |
1851 | fix->smem_start = ivideo->video_base + ivideo->video_offset; | 1851 | fix->smem_start = ivideo->video_base + ivideo->video_offset; |