- Server 2003 and later return the remote PEB in the TIB->ArbitraryUserPointer. Do so as well.

svn path=/trunk/; revision=59584
This commit is contained in:
Alex Ionescu 2013-07-25 18:32:52 +00:00
parent e4bfef2772
commit 4cd30e4431

View file

@ -838,6 +838,12 @@ PspCreateProcess(OUT PHANDLE ProcessHandle,
/* Protect against bad user-mode pointer */
_SEH2_TRY
{
/* Hacky way of returning the PEB to the user-mode creator */
if ((Process->Peb) && (CurrentThread->Tcb.Teb))
{
CurrentThread->Tcb.Teb->NtTib.ArbitraryUserPointer = Process->Peb;
}
/* Save the process handle */
*ProcessHandle = hProcess;
}