ext2: check err when partial != NULL
Check err when partial == NULL is meaningless because partial == NULL means getting branch successfully without error. CC: stable@vger.kernel.org Link: https://lore.kernel.org/r/20191105045100.7104-1-cgxu519@mykernel.net Signed-off-by: Chengguang Xu <cgxu519@mykernel.net> Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
@@ -701,10 +701,13 @@ static int ext2_get_blocks(struct inode *inode,
|
|||||||
if (!partial) {
|
if (!partial) {
|
||||||
count++;
|
count++;
|
||||||
mutex_unlock(&ei->truncate_mutex);
|
mutex_unlock(&ei->truncate_mutex);
|
||||||
if (err)
|
|
||||||
goto cleanup;
|
|
||||||
goto got_it;
|
goto got_it;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (err) {
|
||||||
|
mutex_unlock(&ei->truncate_mutex);
|
||||||
|
goto cleanup;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Reference in New Issue
Block a user