diff options
author | Theodore Ts'o <tytso@mit.edu> | 2019-05-12 04:49:47 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2019-05-12 04:49:47 -0400 |
commit | 0ba33facfc9bb556d1938caa67dfe452695a9be9 (patch) | |
tree | 2446815c8ad9394e2cff2502bf9f05cd9d539d8d /fs/ext4/super.c | |
parent | fbbbbd2f28aec991f3fbc248df211550fbdfd58c (diff) | |
download | linux-0ba33facfc9bb556d1938caa67dfe452695a9be9.tar.bz2 |
ext4: fix miscellaneous sparse warnings
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/super.c')
-rw-r--r-- | fs/ext4/super.c | 2 |
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); |