- Fix a typo in NtSecureConnectPort, ViewBase was not updated, thus confusing callers.

See issue #3242 for more details.

svn path=/trunk/; revision=33473
This commit is contained in:
Aleksey Bragin 2008-05-12 15:27:15 +00:00
parent 3dfc1c7b9e
commit 78681a8ec7

View file

@ -295,7 +295,7 @@ NtSecureConnectPort(OUT PHANDLE PortHandle,
}
/* Update the base */
ClientView->ViewBase = Port->ClientSectionBase;
ClientView->ViewBase = ClientPort->ClientSectionBase;
/* Reference and remember the process */
ClientPort->MappingProcess = PsGetCurrentProcess();