aboutsummaryrefslogtreecommitdiffstats
path: root/fs/hfsplus
diff options
context:
space:
mode:
authorChuck Ebbert <cebbert@redhat.com>2011-02-01 16:41:55 -0500
committerChristoph Hellwig <hch@tuxera.com>2011-02-03 16:34:05 -0700
commit14dd01f88319a37b06ca909738044e39ec5bfdee (patch)
treea628f10480a7f850131500ea6735f40e3c4b0cf1 /fs/hfsplus
parentc5b8d0bce052949e173b5b32f96bd59bceaa2ab0 (diff)
downloadkernel_samsung_smdk4412-14dd01f88319a37b06ca909738044e39ec5bfdee.zip
kernel_samsung_smdk4412-14dd01f88319a37b06ca909738044e39ec5bfdee.tar.gz
kernel_samsung_smdk4412-14dd01f88319a37b06ca909738044e39ec5bfdee.tar.bz2
hfsplus: do not leak buffer on error
Signed-Off-By: Chuck Ebbert <cebbert@redhat.com> Signed-off-by: Christoph Hellwig <hch@tuxera.com>
Diffstat (limited to 'fs/hfsplus')
-rw-r--r--fs/hfsplus/part_tbl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/hfsplus/part_tbl.c b/fs/hfsplus/part_tbl.c
index d66ad11..40ad88c 100644
--- a/fs/hfsplus/part_tbl.c
+++ b/fs/hfsplus/part_tbl.c
@@ -134,7 +134,7 @@ int hfs_part_find(struct super_block *sb,
res = hfsplus_submit_bio(sb->s_bdev, *part_start + HFS_PMAP_BLK,
data, READ);
if (res)
- return res;
+ goto out;
switch (be16_to_cpu(*((__be16 *)data))) {
case HFS_OLD_PMAP_MAGIC:
@@ -147,7 +147,7 @@ int hfs_part_find(struct super_block *sb,
res = -ENOENT;
break;
}
-
+out:
kfree(data);
return res;
}