Fix infinite loop in PspDumpThreads

svn path=/trunk/; revision=34108
This commit is contained in:
Jeffrey Morlan 2008-06-26 16:23:45 +00:00
parent 4865f6c89b
commit ae7e228924

View file

@ -78,11 +78,11 @@ PspDumpThreads(BOOLEAN IncludeSystem)
/* Print a new line if there's nothing */
if((i % 8) != 0) DbgPrint("\n");
}
}
/* Move to the next Thread */
CurrentThread = CurrentThread->Flink;
}
}
/* Move to the next Process */
CurrentProcess = CurrentProcess->Flink;