mirror of
https://github.com/reactos/reactos.git
synced 2025-01-03 21:09:19 +00:00
Fix infinite loop in PspDumpThreads
svn path=/trunk/; revision=34108
This commit is contained in:
parent
4865f6c89b
commit
ae7e228924
1 changed files with 3 additions and 3 deletions
|
@ -78,10 +78,10 @@ PspDumpThreads(BOOLEAN IncludeSystem)
|
||||||
/* Print a new line if there's nothing */
|
/* Print a new line if there's nothing */
|
||||||
if((i % 8) != 0) DbgPrint("\n");
|
if((i % 8) != 0) DbgPrint("\n");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/* Move to the next Thread */
|
/* Move to the next Thread */
|
||||||
CurrentThread = CurrentThread->Flink;
|
CurrentThread = CurrentThread->Flink;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Move to the next Process */
|
/* Move to the next Process */
|
||||||
|
|
Loading…
Reference in a new issue