From 93ca2f682f27d53777a1f2f51869ab9cfd203182 Mon Sep 17 00:00:00 2001 From: Seth Forshee Date: Thu, 15 Sep 2011 10:48:27 -0400 Subject: [PATCH] --- yaml --- r: 263836 b: refs/heads/master c: f588c960fcaa6fa8bf82930bb819c9aca4eb9347 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/fs/hfsplus/super.c | 4 ++-- trunk/fs/hfsplus/wrapper.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/[refs] b/[refs] index b231c6d5756b..4b08274447a5 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: cc39c6a9bbdebfcf1a7dee64d83bf302bc38d941 +refs/heads/master: f588c960fcaa6fa8bf82930bb819c9aca4eb9347 diff --git a/trunk/fs/hfsplus/super.c b/trunk/fs/hfsplus/super.c index c106ca22e812..cadbb8c81887 100644 --- a/trunk/fs/hfsplus/super.c +++ b/trunk/fs/hfsplus/super.c @@ -525,8 +525,8 @@ static int hfsplus_fill_super(struct super_block *sb, void *data, int silent) out_close_ext_tree: hfs_btree_close(sbi->ext_tree); out_free_vhdr: - kfree(sbi->s_vhdr); - kfree(sbi->s_backup_vhdr); + kfree(sbi->s_vhdr_buf); + kfree(sbi->s_backup_vhdr_buf); out_unload_nls: unload_nls(sbi->nls); unload_nls(nls); diff --git a/trunk/fs/hfsplus/wrapper.c b/trunk/fs/hfsplus/wrapper.c index 10e515a0d452..7daf4b852d1c 100644 --- a/trunk/fs/hfsplus/wrapper.c +++ b/trunk/fs/hfsplus/wrapper.c @@ -272,9 +272,9 @@ int hfsplus_read_wrapper(struct super_block *sb) return 0; out_free_backup_vhdr: - kfree(sbi->s_backup_vhdr); + kfree(sbi->s_backup_vhdr_buf); out_free_vhdr: - kfree(sbi->s_vhdr); + kfree(sbi->s_vhdr_buf); out: return error; }