mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
- 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:
parent
3dfc1c7b9e
commit
78681a8ec7
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue