mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
[NTOS] Fix a bug in KiPrepareUserDebugData
This commit is contained in:
parent
e923912f94
commit
225e0c89d9
1 changed files with 1 additions and 1 deletions
|
@ -215,7 +215,7 @@ KiPrepareUserDebugData(void)
|
|||
{
|
||||
/* Get a pointer to the loader data */
|
||||
PebLdr = Teb->ProcessEnvironmentBlock->Ldr;
|
||||
if (!PebLdr) _SEH2_YIELD(return);
|
||||
if (!PebLdr) _SEH2_LEAVE;
|
||||
|
||||
/* Now loop all entries in the module list */
|
||||
for (ListEntry = PebLdr->InLoadOrderModuleList.Flink;
|
||||
|
|
Loading…
Reference in a new issue