Commit 69201bb1 authored by Fabian Frederick's avatar Fabian Frederick Committed by Linus Torvalds
Browse files

fs/ocfs2/super.c: use OCFS2_MAX_VOL_LABEL_LEN and strlcpy



Replace strncpy(size 63) by defined value.

Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Cc: Joel Becker <jlbec@evilplan.org>
Cc: Mark Fasheh <mfasheh@suse.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1a5c4e2a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 =