mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
- Fix a typo in DbgkCreateThread which caused a boot-time crash/regression.
svn path=/trunk/; revision=24739
This commit is contained in:
parent
afb3f6c5c3
commit
6652f94900
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue