mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
udf: fix memory leak while allocating blocks during write
commit 2fb7d99d0d upstream.
Need to brelse the buffer_head stored in cur_epos and next_epos.
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Ashish Sangwan <a.sangwan@samsung.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Shuah Khan <shuah.khan@hp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
39a7319499
commit
de3ecca3e3
|
|
@ -738,6 +738,8 @@ static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
|
|||
goal, err);
|
||||
if (!newblocknum) {
|
||||
brelse(prev_epos.bh);
|
||||
brelse(cur_epos.bh);
|
||||
brelse(next_epos.bh);
|
||||
*err = -ENOSPC;
|
||||
return NULL;
|
||||
}
|
||||
|
|
@ -768,6 +770,8 @@ static struct buffer_head *inode_getblk(struct inode *inode, sector_t block,
|
|||
udf_update_extents(inode, laarr, startnum, endnum, &prev_epos);
|
||||
|
||||
brelse(prev_epos.bh);
|
||||
brelse(cur_epos.bh);
|
||||
brelse(next_epos.bh);
|
||||
|
||||
newblock = udf_get_pblock(inode->i_sb, newblocknum,
|
||||
iinfo->i_location.partitionReferenceNum, 0);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user