VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Kees Cook <keescook@chromium.org> 2020-06-03 13:09:38 -0700 committer: Kees Cook <keescook@chromium.org> 2020-07-16 12:35:15 -0700 commit: 3f649ab728cda8038259d8f14492fe400fbab911 parent: d8b44b58a7073b4d74b3394131eb449e8469396b
Commit Summary:
treewide: Remove uninitialized_var() usage
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/hfsplus/unicode.c b/fs/hfsplus/unicode.c
index c8d1b2be7854..73342c925a4b 100644
--- a/fs/hfsplus/unicode.c
+++ b/fs/hfsplus/unicode.c
@@ -398,7 +398,7 @@ int hfsplus_hash_dentry(const struct dentry *dentry, struct qstr *str)
 	astr = str->name;
 	len = str->len;
 	while (len > 0) {
-		int uninitialized_var(dsize);
+		int dsize;
 		size = asc2unichar(sb, astr, len, &c);
 		astr += size;
 		len -= size;