[NTOSKRNL] Formatting fix only.

This commit is contained in:
Hermès Bélusca-Maïto 2018-04-01 22:34:17 +02:00
parent 6cefd1242d
commit c54aaacc8e
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -14,7 +14,7 @@
#define TAG_ERR ' rrE'
/* GLOBALS ****************************************************************/
/* GLOBALS ******************************************************************/
BOOLEAN ExReadyForErrors = FALSE;
PVOID ExpDefaultErrorPort = NULL;
@ -247,9 +247,12 @@ ExpRaiseHardError(IN NTSTATUS ErrorStatus,
KeQuerySystemTime(&Message->ErrorTime);
/* Copy the parameters */
if (Parameters) RtlMoveMemory(&Message->Parameters,
Parameters,
sizeof(ULONG_PTR) * NumberOfParameters);
if (Parameters)
{
RtlMoveMemory(&Message->Parameters,
Parameters,
sizeof(ULONG_PTR) * NumberOfParameters);
}
/* Send the LPC Message */
Status = LpcRequestWaitReplyPort(PortHandle,