mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 17:44:45 +00:00
Correctly set internal state in NpfsDisconnectPipe and fix some return values in NpfsRead.
svn path=/trunk/; revision=17156
This commit is contained in:
parent
135eaf6958
commit
aef1fdc048
2 changed files with 10 additions and 13 deletions
|
@ -187,6 +187,7 @@ NpfsDisconnectPipe(PNPFS_FCB Fcb)
|
|||
Server = (Fcb->PipeEnd == FILE_PIPE_SERVER_END);
|
||||
OtherSide = Fcb->OtherSide;
|
||||
Fcb->OtherSide = NULL;
|
||||
Fcb->PipeState = FILE_PIPE_DISCONNECTED_STATE;
|
||||
/* Lock the server first */
|
||||
if (Server)
|
||||
{
|
||||
|
|
|
@ -27,7 +27,7 @@ VOID HexDump(PUCHAR Buffer, ULONG Length)
|
|||
|
||||
DbgPrint("---------------\n");
|
||||
|
||||
for (i = 0; i < ROUND_UP(Length, 16); i+= 16)
|
||||
for (i = 0; i < Length; i+= 16)
|
||||
{
|
||||
memset(Line, ' ', 64);
|
||||
Line[64] = 0;
|
||||
|
@ -398,23 +398,19 @@ NpfsRead(IN PDEVICE_OBJECT DeviceObject,
|
|||
{
|
||||
if (Fcb->ReadDataAvailable == 0)
|
||||
{
|
||||
if (Fcb->PipeState == FILE_PIPE_CONNECTED_STATE)
|
||||
{
|
||||
ASSERT(Fcb->OtherSide != NULL);
|
||||
KeSetEvent(&Fcb->OtherSide->WriteEvent, IO_NO_INCREMENT, FALSE);
|
||||
}
|
||||
if (Information > 0 &&
|
||||
(Fcb->Pipe->ReadMode != FILE_PIPE_BYTE_STREAM_MODE ||
|
||||
Fcb->PipeState != FILE_PIPE_CONNECTED_STATE))
|
||||
{
|
||||
break;
|
||||
}
|
||||
if (Fcb->PipeState != FILE_PIPE_CONNECTED_STATE)
|
||||
{
|
||||
DPRINT("PipeState: %x\n", Fcb->PipeState);
|
||||
Status = STATUS_PIPE_BROKEN;
|
||||
if (Fcb->PipeState == FILE_PIPE_LISTENING_STATE)
|
||||
Status = STATUS_PIPE_LISTENING;
|
||||
else
|
||||
Status = STATUS_PIPE_DISCONNECTED;
|
||||
break;
|
||||
}
|
||||
|
||||
ASSERT(Fcb->OtherSide != NULL);
|
||||
KeSetEvent(&Fcb->OtherSide->WriteEvent, IO_NO_INCREMENT, FALSE);
|
||||
|
||||
ExReleaseFastMutex(&Fcb->DataListLock);
|
||||
if (IoIsOperationSynchronous(Irp))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue