From 78681a8ec7e0b13ea352c73b4a7114cd0baaa762 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Mon, 12 May 2008 15:27:15 +0000 Subject: [PATCH] - Fix a typo in NtSecureConnectPort, ViewBase was not updated, thus confusing callers. See issue #3242 for more details. svn path=/trunk/; revision=33473 --- reactos/ntoskrnl/lpc/connect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/ntoskrnl/lpc/connect.c b/reactos/ntoskrnl/lpc/connect.c index 38d22c9b1c6..3afc9a8753f 100644 --- a/reactos/ntoskrnl/lpc/connect.c +++ b/reactos/ntoskrnl/lpc/connect.c @@ -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();