aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorTsutomu Itoh <t-itoh@jp.fujitsu.com>2012-02-14 17:12:23 +0900
committerDavid Sterba <dsterba@suse.cz>2012-02-15 16:40:24 +0100
commita7e221e9002306a753d6f78b4060edabce402033 (patch)
tree0b69be576f3cbbb5fe24a4f9e57dcbda57f2ccb1 /fs
parentbtrfs: don't check DUP chunks twice (diff)
downloadlinux-dev-a7e221e9002306a753d6f78b4060edabce402033.tar.xz
linux-dev-a7e221e9002306a753d6f78b4060edabce402033.zip
Btrfs: fix memory leak in load_free_space_cache()
load_free_space_cache() has forgotten to free path. Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/free-space-cache.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/free-space-cache.c b/fs/btrfs/free-space-cache.c
index 5802b1473c3d..b30242f4435e 100644
--- a/fs/btrfs/free-space-cache.c
+++ b/fs/btrfs/free-space-cache.c
@@ -777,6 +777,7 @@ int load_free_space_cache(struct btrfs_fs_info *fs_info,
spin_lock(&block_group->lock);
if (block_group->disk_cache_state != BTRFS_DC_WRITTEN) {
spin_unlock(&block_group->lock);
+ btrfs_free_path(path);
goto out;
}
spin_unlock(&block_group->lock);