mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 03:30:53 +07:00
ext4: avoid possible double brelse() in add_new_gdb() on error path
Fixes: b40971426a
("ext4: add error checking to calls to ...")
Reported-by: Vasily Averin <vvs@virtuozzo.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Cc: stable@kernel.org # 2.6.38
This commit is contained in:
parent
feaf264ce7
commit
4f32c38b46
@ -871,6 +871,7 @@ static int add_new_gdb(handle_t *handle, struct inode *inode,
|
|||||||
err = ext4_handle_dirty_metadata(handle, NULL, gdb_bh);
|
err = ext4_handle_dirty_metadata(handle, NULL, gdb_bh);
|
||||||
if (unlikely(err)) {
|
if (unlikely(err)) {
|
||||||
ext4_std_error(sb, err);
|
ext4_std_error(sb, err);
|
||||||
|
iloc.bh = NULL;
|
||||||
goto exit_inode;
|
goto exit_inode;
|
||||||
}
|
}
|
||||||
brelse(dind);
|
brelse(dind);
|
||||||
|
Loading…
Reference in New Issue
Block a user