aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/super.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2019-05-12 04:49:47 -0400
committerTheodore Ts'o <tytso@mit.edu>2019-05-12 04:49:47 -0400
commit0ba33facfc9bb556d1938caa67dfe452695a9be9 (patch)
tree2446815c8ad9394e2cff2502bf9f05cd9d539d8d /fs/ext4/super.c
parentext4: unsigned int compared against zero (diff)
downloadlinux-dev-0ba33facfc9bb556d1938caa67dfe452695a9be9.tar.xz
linux-dev-0ba33facfc9bb556d1938caa67dfe452695a9be9.zip
ext4: fix miscellaneous sparse warnings
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to '')
-rw-r--r--fs/ext4/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index fc6fa2c93e77..5013d04b41fd 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -4679,7 +4679,7 @@ failed_mount:
#ifdef CONFIG_QUOTA
for (i = 0; i < EXT4_MAXQUOTAS; i++)
- kfree(sbi->s_qf_names[i]);
+ kfree(get_qf_name(sb, sbi, i));
#endif
ext4_blkdev_remove(sbi);
brelse(bh);