Commit f7805980 authored by Namjae Jeon's avatar Namjae Jeon
Browse files

exfat: remove unnecessary reassignment of p_uniname->name_len



kbuild test robot reported :

	fs/exfat/nls.c:531:22: warning: Variable 'p_uniname->name_len'
	is reassigned a value before the old one has been used.

The reassignment of p_uniname->name_len is not needed and remove it.

Reported-by: default avatarkbuild test robot <lkp@intel.com>
Signed-off-by: default avatarNamjae Jeon <namjae.jeon@samsung.com>
parent 5875bf28
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -514,8 +514,6 @@ static int exfat_utf8_to_utf16(struct super_block *sb,
		return -ENAMETOOLONG;
	}

	p_uniname->name_len = unilen & 0xFF;

	for (i = 0; i < unilen; i++) {
		if (*uniname < 0x0020 ||
		    exfat_wstrchr(bad_uni_chars, *uniname))