mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-29 15:14:18 +08:00
Remove an already-checked error condition in SendReceiveBlockingLock
Remove an already-checked error condition in SendReceiveBlockingLock Signed-off-by: Volker Lendecke <vl@samba.org> Signed-off-by: Steve French <sfrench@us.ibm.com>
This commit is contained in:
parent
698e96a826
commit
ac6a3ef405
@ -1067,8 +1067,7 @@ SendReceiveBlockingLock(const unsigned int xid, struct cifsTconInfo *tcon,
|
||||
|
||||
/* rcvd frame is ok */
|
||||
|
||||
if ((midQ->resp_buf == NULL) || (out_buf == NULL)
|
||||
|| (midQ->midState != MID_RESPONSE_RECEIVED)) {
|
||||
if ((out_buf == NULL) || (midQ->midState != MID_RESPONSE_RECEIVED)) {
|
||||
rc = -EIO;
|
||||
cERROR(1, ("Bad MID state?"));
|
||||
goto out;
|
||||
|
Loading…
Reference in New Issue
Block a user