diff --git "a/ntoskrnl/dbgk/dbgkobj.c" "b/ntoskrnl/dbgk/dbgkobj.c" index 4b480a2cbf9..bb35aac2be8 100644 --- "a/ntoskrnl/dbgk/dbgkobj.c" +++ "b/ntoskrnl/dbgk/dbgkobj.c" @@ -257,11 +257,14 @@ DbgkpSendApiMessage(IN OUT PDBGKM_MSG ApiMsg, PspSetProcessFlag(PsGetCurrentProcess(), PSF_CREATE_REPORTED_BIT); /* Send the LPC command */ + if (ApiMsg->ApiNumber != 6) Status = DbgkpQueueMessage(PsGetCurrentProcess(), PsGetCurrentThread(), ApiMsg, 0, NULL); + else + DPRINT1("ApiMsg->ApiNumber 6 is not handled at this time\n"); /* Flush the instruction cache */ ZwFlushInstructionCache(NtCurrentProcess(), NULL, 0);