[ros-diffs] [fireball] 33473: - Fix a typo in NtSecureConnectPort, ViewBase was not updated, thus confusing callers. See issue #3242 for more details.

fireball at svn.reactos.org fireball at svn.reactos.org
Mon May 12 17:27:16 CEST 2008


Author: fireball
Date: Mon May 12 10:27:15 2008
New Revision: 33473

URL: http://svn.reactos.org/svn/reactos?rev=33473&view=rev
Log:
- Fix a typo in NtSecureConnectPort, ViewBase was not updated, thus confusing callers.
See issue #3242 for more details.

Modified:
    trunk/reactos/ntoskrnl/lpc/connect.c

Modified: trunk/reactos/ntoskrnl/lpc/connect.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/lpc/connect.c?rev=33473&r1=33472&r2=33473&view=diff
==============================================================================
--- trunk/reactos/ntoskrnl/lpc/connect.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/lpc/connect.c [iso-8859-1] Mon May 12 10:27:15 2008
@@ -295,7 +295,7 @@
         }
 
         /* Update the base */
-        ClientView->ViewBase = Port->ClientSectionBase;
+        ClientView->ViewBase = ClientPort->ClientSectionBase;
 
         /* Reference and remember the process */
         ClientPort->MappingProcess = PsGetCurrentProcess();



More information about the Ros-diffs mailing list