diff options
author | Theodore Ts'o <tytso@mit.edu> | 2018-11-06 17:18:17 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-11-21 09:19:21 +0100 |
commit | 64a3d5374bb1614e654bc11436425a7c45fcdd3b (patch) | |
tree | 0442e44530a1bce9611e7aa0925eddcb81c9a903 /fs | |
parent | 110a1994e1cf6663176b5018919ae9bd982f6915 (diff) | |
download | linux-stable-64a3d5374bb1614e654bc11436425a7c45fcdd3b.tar.gz linux-stable-64a3d5374bb1614e654bc11436425a7c45fcdd3b.tar.bz2 linux-stable-64a3d5374bb1614e654bc11436425a7c45fcdd3b.zip |
ext4: avoid possible double brelse() in add_new_gdb() on error path
commit 4f32c38b4662312dd3c5f113d8bdd459887fb773 upstream.
Fixes: b40971426a83 ("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
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ext4/resize.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index 85158e9de7c2..a5efee34415f 100644 --- a/fs/ext4/resize.c +++ b/fs/ext4/resize.c @@ -871,6 +871,7 @@ static int add_new_gdb(handle_t *handle, struct inode *inode, err = ext4_handle_dirty_metadata(handle, NULL, gdb_bh); if (unlikely(err)) { ext4_std_error(sb, err); + iloc.bh = NULL; goto exit_inode; } brelse(dind); |