Btrfs: fix possible memory leak in find_parent_nodes()

Signed-off-by: Wang Shilong <wangsl.fnst@cn.fujitsu.com>
Reviewed-by: Miao Xie <miaox@cn.fujitsu.com>
Signed-off-by: Josef Bacik <jbacik@fusionio.com>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
This commit is contained in:
Wang Shilong 2013-08-08 13:04:17 +08:00 коммит произвёл Chris Mason
Родитель 09fb99a696
Коммит a4fdb61e81
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -911,7 +911,6 @@ again:
while (!list_empty(&prefs)) {
ref = list_first_entry(&prefs, struct __prelim_ref, list);
list_del(&ref->list);
WARN_ON(ref->count < 0);
if (ref->count && ref->root_id && ref->parent == 0) {
/* no parent == root of tree */
@ -956,6 +955,7 @@ again:
eie->next = ref->inode_list;
}
}
list_del(&ref->list);
kfree(ref);
}