mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
Temporary disable part of the SEH code in NtReplyWaitReceivePortEx to get trunk working again.
svn path=/trunk/; revision=33438
This commit is contained in:
parent
117852d238
commit
44a984e920
1 changed files with 7 additions and 3 deletions
|
@ -165,7 +165,7 @@ NtReplyWaitReceivePortEx(IN HANDLE PortHandle,
|
|||
PETHREAD Thread = PsGetCurrentThread(), WakeupThread;
|
||||
PLPCP_CONNECTION_MESSAGE ConnectMessage;
|
||||
ULONG ConnectionInfoLength;
|
||||
PORT_MESSAGE CapturedReplyMessage;
|
||||
//PORT_MESSAGE CapturedReplyMessage;
|
||||
LARGE_INTEGER CapturedTimeout;
|
||||
|
||||
PAGED_CODE();
|
||||
|
@ -183,8 +183,8 @@ NtReplyWaitReceivePortEx(IN HANDLE PortHandle,
|
|||
if (ReplyMessage != NULL)
|
||||
{
|
||||
ProbeForRead(ReplyMessage, sizeof(PORT_MESSAGE), sizeof(ULONG));
|
||||
RtlCopyMemory(&CapturedReplyMessage, ReplyMessage, sizeof(PORT_MESSAGE));
|
||||
ReplyMessage = &CapturedReplyMessage;
|
||||
/*RtlCopyMemory(&CapturedReplyMessage, ReplyMessage, sizeof(PORT_MESSAGE));
|
||||
ReplyMessage = &CapturedReplyMessage;*/
|
||||
}
|
||||
|
||||
if (Timeout != NULL)
|
||||
|
@ -199,6 +199,8 @@ NtReplyWaitReceivePortEx(IN HANDLE PortHandle,
|
|||
}
|
||||
_SEH_EXCEPT(_SEH_ExSystemExceptionFilter)
|
||||
{
|
||||
DPRINT1("SEH crash [1]\n");
|
||||
DbgBreakPoint();
|
||||
Status = _SEH_GetExceptionCode();
|
||||
}
|
||||
_SEH_END;
|
||||
|
@ -492,6 +494,8 @@ NtReplyWaitReceivePortEx(IN HANDLE PortHandle,
|
|||
}
|
||||
_SEH_EXCEPT(_SEH_ExSystemExceptionFilter)
|
||||
{
|
||||
DPRINT1("SEH crash [2]\n");
|
||||
DbgBreakPoint();
|
||||
Status = _SEH_GetExceptionCode();
|
||||
}
|
||||
_SEH_END;
|
||||
|
|
Loading…
Reference in a new issue