Commit 70ca35b4 authored by Vasily Averin's avatar Vasily Averin Committed by Greg Kroah-Hartman

ext4: fix buffer leak in ext4_xattr_get_block() on error path

commit ecaaf408 upstream.

Fixes: dec214d0 ("ext4: xattr inode deduplication")
Signed-off-by: default avatarVasily Averin <vvs@virtuozzo.com>
Signed-off-by: default avatarTheodore Ts'o <tytso@mit.edu>
Cc: stable@kernel.org # 4.13
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 181224f9
......@@ -2281,8 +2281,10 @@ static struct buffer_head *ext4_xattr_get_block(struct inode *inode)
if (!bh)
return ERR_PTR(-EIO);
error = ext4_xattr_check_block(inode, bh);
if (error)
if (error) {
brelse(bh);
return ERR_PTR(error);
}
return bh;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment