aboutsummaryrefslogtreecommitdiffstats
path: root/fs/befs/linuxvfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/befs/linuxvfs.c')
-rw-r--r--fs/befs/linuxvfs.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c
index e8112ad5365d..2d365cb8eec6 100644
--- a/fs/befs/linuxvfs.c
+++ b/fs/befs/linuxvfs.c
@@ -725,20 +725,16 @@ parse_options(char *options, befs_mount_options * opts)
725static void 725static void
726befs_put_super(struct super_block *sb) 726befs_put_super(struct super_block *sb)
727{ 727{
728 if (BEFS_SB(sb)->mount_opts.iocharset) { 728 kfree(BEFS_SB(sb)->mount_opts.iocharset);
729 kfree(BEFS_SB(sb)->mount_opts.iocharset); 729 BEFS_SB(sb)->mount_opts.iocharset = NULL;
730 BEFS_SB(sb)->mount_opts.iocharset = NULL;
731 }
732 730
733 if (BEFS_SB(sb)->nls) { 731 if (BEFS_SB(sb)->nls) {
734 unload_nls(BEFS_SB(sb)->nls); 732 unload_nls(BEFS_SB(sb)->nls);
735 BEFS_SB(sb)->nls = NULL; 733 BEFS_SB(sb)->nls = NULL;
736 } 734 }
737 735
738 if (sb->s_fs_info) { 736 kfree(sb->s_fs_info);
739 kfree(sb->s_fs_info); 737 sb->s_fs_info = NULL;
740 sb->s_fs_info = NULL;
741 }
742 return; 738 return;
743} 739}
744 740