diff options
author | Guo Chao <[email protected]> | 2013-01-06 23:38:47 -0500 |
---|---|---|
committer | Theodore Ts'o <[email protected]> | 2013-01-06 23:38:47 -0500 |
commit | 0ecaef0644973e9006fdbc6974301047aaff9bc6 (patch) | |
tree | 8c0b65a4401435ee094c00e7a09bce81f4b90685 | |
parent | 96465efee14ecca0cdffcb09f9903635db8fc504 (diff) |
ext4: release buffer in failed path in dx_probe()
If checksum fails, we should also release the buffer
read from previous iteration.
Signed-off-by: Guo Chao <[email protected]>
Signed-off-by: "Theodore Ts'o" <[email protected]>
Reviewed-by: Darrick J. Wong <[email protected]>-
Cc: [email protected]
--
fs/ext4/namei.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
-rw-r--r-- | fs/ext4/namei.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/namei.c b/fs/ext4/namei.c index 8990165346ee..f8be1c288a1c 100644 --- a/fs/ext4/namei.c +++ b/fs/ext4/namei.c @@ -722,7 +722,7 @@ dx_probe(const struct qstr *d_name, struct inode *dir, ext4_warning(dir->i_sb, "Node failed checksum"); brelse(bh); *err = ERR_BAD_DX_DIR; - goto fail; + goto fail2; } set_buffer_verified(bh); |