Commit ecaaf408 authored by Vasily Averin's avatar Vasily Averin Committed by Theodore Ts'o

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

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
parent af18e35b
...@@ -2272,8 +2272,10 @@ static struct buffer_head *ext4_xattr_get_block(struct inode *inode) ...@@ -2272,8 +2272,10 @@ static struct buffer_head *ext4_xattr_get_block(struct inode *inode)
if (!bh) if (!bh)
return ERR_PTR(-EIO); return ERR_PTR(-EIO);
error = ext4_xattr_check_block(inode, bh); error = ext4_xattr_check_block(inode, bh);
if (error) if (error) {
brelse(bh);
return ERR_PTR(error); return ERR_PTR(error);
}
return bh; 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