mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
- Just kidding. Fix it for real.
svn path=/trunk/; revision=53142
This commit is contained in:
parent
d4b83ece4b
commit
302ceb19e1
1 changed files with 2 additions and 1 deletions
|
@ -688,7 +688,8 @@ AfdDisconnect(PDEVICE_OBJECT DeviceObject, PIRP Irp,
|
|||
Flags = TDI_DISCONNECT_RELEASE;
|
||||
}
|
||||
/* Shutdown(SD_RECEIVE) */
|
||||
else if (DisReq->DisconnectType & AFD_DISCONNECT_RECV)
|
||||
else if ((DisReq->DisconnectType & AFD_DISCONNECT_RECV) &&
|
||||
!(DisReq->DisconnectType & AFD_DISCONNECT_SEND))
|
||||
{
|
||||
/* Mark that we can't issue another receive request */
|
||||
FCB->TdiReceiveClosed = TRUE;
|
||||
|
|
Loading…
Reference in a new issue