- Fix copypasta in the comments

svn path=/trunk/; revision=70348
This commit is contained in:
Aleksey Bragin 2015-12-14 23:20:10 +00:00
parent a62f0ac81c
commit 830c4ee4a0

View file

@ -654,10 +654,10 @@ PsLookupThreadByThreadId(IN HANDLE ThreadId,
CidEntry = ExMapHandleToPointer(PspCidTable, ThreadId); CidEntry = ExMapHandleToPointer(PspCidTable, ThreadId);
if (CidEntry) if (CidEntry)
{ {
/* Get the Process */ /* Get the Thread */
FoundThread = CidEntry->Object; FoundThread = CidEntry->Object;
/* Make sure it's really a process */ /* Make sure it's really a thread */
if (FoundThread->Tcb.Header.Type == ThreadObject) if (FoundThread->Tcb.Header.Type == ThreadObject)
{ {
/* Safe Reference and return it */ /* Safe Reference and return it */