diff options
-rw-r--r-- | source3/smbd/process.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index c448267781..f366600ab8 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -1409,8 +1409,7 @@ static connection_struct *switch_message(uint8 type, struct smb_request *req, in /* Make sure this is an SMB packet. smb_size contains NetBIOS header * so subtract 4 from it. */ - if (!valid_smb_header(sconn, req->inbuf) - || (size < (smb_size - 4))) { + if ((size < (smb_size - 4)) || !valid_smb_header(sconn, req->inbuf)) { DEBUG(2,("Non-SMB packet of length %d. Terminating server\n", smb_len(req->inbuf))); exit_server_cleanly("Non-SMB packet"); |