[NTOSKERNEL] Stop KeRundownThread from bugchecking on at least CTRL_C for console app.

svn path=/trunk/; revision=57468
This commit is contained in:
Mike Nordell 2012-10-03 19:51:22 +00:00
parent e89081ed5f
commit 9e555a84d5

View file

@ -470,6 +470,9 @@ KeRundownThread(VOID)
0);
}
/* Move on, but save NextEntry before we remove */
NextEntry = NextEntry->Flink;
/* Now we can remove it */
RemoveEntryList(&Mutant->MutantListEntry);
@ -484,9 +487,6 @@ KeRundownThread(VOID)
/* Wake the Mutant */
KiWaitTest(&Mutant->Header, MUTANT_INCREMENT);
}
/* Move on */
NextEntry = NextEntry->Flink;
}
/* Release the Lock */