Commit in reactos/lib/advapi32/token on MAIN
token.c+2-21.13 -> 1.14
NtSetInformationThread() expects a pointer, not the handle itself

reactos/lib/advapi32/token
token.c 1.13 -> 1.14
diff -u -r1.13 -r1.14
--- token.c	15 Aug 2004 17:03:15 -0000	1.13
+++ token.c	27 Sep 2004 20:04:53 -0000	1.14
@@ -1,4 +1,4 @@
-/* $Id: token.c,v 1.13 2004/08/15 17:03:15 chorns Exp $
+/* $Id: token.c,v 1.14 2004/09/27 20:04:53 gvg Exp $
  *
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS system libraries
@@ -235,7 +235,7 @@
 
   Status = NtSetInformationThread (hThread,
 				   ThreadImpersonationToken,
-				   TokenHandle,
+				   &TokenHandle,
 				   sizeof(HANDLE));
   if (!NT_SUCCESS(Status))
     {
CVSspam 0.2.8