for NUL terminated string, need always set '\0' in the end.

Signed-off-by: Chen Gang <[email protected]>
---
 drivers/staging/media/go7007/snd-go7007.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/media/go7007/snd-go7007.c 
b/drivers/staging/media/go7007/snd-go7007.c
index 5af29ff..6f6271e 100644
--- a/drivers/staging/media/go7007/snd-go7007.c
+++ b/drivers/staging/media/go7007/snd-go7007.c
@@ -267,9 +267,9 @@ int go7007_snd_init(struct go7007 *go)
                kfree(gosnd);
                return ret;
        }
-       strncpy(gosnd->card->driver, "go7007", sizeof(gosnd->card->driver));
-       strncpy(gosnd->card->shortname, go->name, sizeof(gosnd->card->driver));
-       strncpy(gosnd->card->longname, gosnd->card->shortname,
+       strlcpy(gosnd->card->driver, "go7007", sizeof(gosnd->card->driver));
+       strlcpy(gosnd->card->shortname, go->name, sizeof(gosnd->card->driver));
+       strlcpy(gosnd->card->longname, gosnd->card->shortname,
                        sizeof(gosnd->card->longname));
 
        gosnd->pcm->private_data = go;
-- 
1.7.7.6
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to