]> Pileus Git - ~andy/linux/commitdiff
ext4: release buffer in failed path in dx_probe()
authorGuo Chao <yan@linux.vnet.ibm.com>
Mon, 7 Jan 2013 04:38:47 +0000 (23:38 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 7 Jan 2013 04:38:47 +0000 (23:38 -0500)
If checksum fails, we should also release the buffer
read from previous iteration.

Signed-off-by: Guo Chao <yan@linux.vnet.ibm.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>-
Cc: stable@vger.kernel.org
--
 fs/ext4/namei.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

fs/ext4/namei.c

index 8990165346ee6aa01a7f9a3264a092fc9669e85b..f8be1c288a1ce9bbcfb630ec3b55375601c3a469 100644 (file)
@@ -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);