diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2009-12-07 10:38:16 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2009-12-07 10:38:16 -0500 |
commit | c09eef305dd43846360944ad072f051f964fa383 (patch) | |
tree | d0ce2efcbad1dbc1fa6ebc60b13f95aace0004dc /fs/ext4 | |
parent | e6ec116b67f46e0e7808276476554727b2e6240b (diff) | |
download | linux-3.10-c09eef305dd43846360944ad072f051f964fa383.tar.gz linux-3.10-c09eef305dd43846360944ad072f051f964fa383.tar.bz2 linux-3.10-c09eef305dd43846360944ad072f051f964fa383.zip |
ext4: Return the PTR_ERR of the correct pointer in setup_new_group_blocks()
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/resize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/resize.c b/fs/ext4/resize.c index 3cfc343c41b..3b2c5541d8a 100644 --- a/fs/ext4/resize.c +++ b/fs/ext4/resize.c @@ -247,7 +247,7 @@ static int setup_new_group_blocks(struct super_block *sb, goto exit_bh; if (IS_ERR(gdb = bclean(handle, sb, block))) { - err = PTR_ERR(bh); + err = PTR_ERR(gdb); goto exit_bh; } ext4_handle_dirty_metadata(handle, NULL, gdb); |