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>
diff --git a/fs/cifs/transport.c b/fs/cifs/transport.c
index 7e10b13..7ebe659 100644
--- a/fs/cifs/transport.c
+++ b/fs/cifs/transport.c
@@ -1067,8 +1067,7 @@
 
 	/* 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;