fs/ocfs2/super.c: use OCFS2_MAX_VOL_LABEL_LEN and strlcpy
authorFabian Frederick <fabf@skynet.be>
Wed, 4 Jun 2014 23:06:07 +0000 (16:06 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 4 Jun 2014 23:53:54 +0000 (16:53 -0700)
Replace strncpy(size 63) by defined value.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Mark Fasheh <mfasheh@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/ocfs2/super.c

index 9027729..c7a89ce 100644 (file)
@@ -2292,8 +2292,8 @@ static int ocfs2_initialize_super(struct super_block *sb,
                goto bail;
        }
 
-       strncpy(osb->vol_label, di->id2.i_super.s_label, 63);
-       osb->vol_label[63] = '\0';
+       strlcpy(osb->vol_label, di->id2.i_super.s_label,
+               OCFS2_MAX_VOL_LABEL_LEN);
        osb->root_blkno = le64_to_cpu(di->id2.i_super.s_root_blkno);
        osb->system_dir_blkno = le64_to_cpu(di->id2.i_super.s_system_dir_blkno);
        osb->first_cluster_group_blkno =