- Fix a typo in NtSecureConnectPort, ViewBase was not updated, thus confusing callers.
authorAleksey Bragin <aleksey@reactos.org>
Mon, 12 May 2008 15:27:15 +0000 (15:27 +0000)
committerAleksey Bragin <aleksey@reactos.org>
Mon, 12 May 2008 15:27:15 +0000 (15:27 +0000)
See issue #3242 for more details.

svn path=/trunk/; revision=33473

reactos/ntoskrnl/lpc/connect.c

index 38d22c9..3afc9a8 100644 (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();