From 733ded2a803523f9e082282820821343679cadc6 Mon Sep 17 00:00:00 2001 From: Jan Kara Date: Tue, 25 Nov 2014 16:23:48 -0500 Subject: ext4: remove never taken branch from ext4_ext_shift_path_extents() path[depth].p_hdr can never be NULL for a path passed to us (and even if it could, EXT_LAST_EXTENT() would make something != NULL from it). So just remove the branch. Coverity-id: 1196498 Signed-off-by: Jan Kara Signed-off-by: Theodore Ts'o --- fs/ext4/extents.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'fs') diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index e2424bafd6fe..c3a1fa1398f5 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -5249,8 +5249,6 @@ ext4_ext_shift_path_extents(struct ext4_ext_path *path, ext4_lblk_t shift, return -EIO; ex_last = EXT_LAST_EXTENT(path[depth].p_hdr); - if (!ex_last) - return -EIO; err = ext4_access_path(handle, inode, path + depth); if (err) -- cgit v1.2.3-55-g7522