- Fix a typo in DbgkCreateThread which caused a boot-time crash/regression.

svn path=/trunk/; revision=24739
This commit is contained in:
Alex Ionescu 2006-11-13 01:47:10 +00:00
parent afb3f6c5c3
commit 6652f94900

View file

@ -169,7 +169,7 @@ DbgkCreateThread(PVOID StartAddress)
/* Fail if we have no port */
DebugPort = Process->DebugPort;
if (DebugPort) return;
if (!DebugPort) return;
/* Check if create was not already reported */
if (!(ProcessFlags & PSF_CREATE_REPORTED_BIT))