Index: ntoskrnl/ex/sysinfo.c =================================================================== --- ntoskrnl/ex/sysinfo.c (revision 72738) +++ ntoskrnl/ex/sysinfo.c (working copy) @@ -812,6 +812,10 @@ { SpiCurrent = (PSYSTEM_PROCESS_INFORMATION) Current; + /* Lock the Process */ + KeEnterCriticalRegion(); + ExAcquirePushLockShared(&Process->ProcessLock); + if ((Process->ProcessExiting) && (Process->Pcb.Header.SignalState) && !(Process->ActiveThreads) && @@ -821,6 +825,10 @@ Process, Process->ImageFileName, Process->UniqueProcessId); CurrentSize = 0; ImageNameMaximumLength = 0; + + /* Unlock the Process */ + ExReleasePushLockShared(&Process->ProcessLock); + KeLeaveCriticalRegion(); goto Skip; } @@ -955,6 +963,10 @@ ProcessImageName = NULL; } + /* Unlock the Process */ + ExReleasePushLockShared(&Process->ProcessLock); + KeLeaveCriticalRegion(); + /* Handle idle process entry */ Skip: if (Process == PsIdleProcess) Process = NULL;