mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[MSGINA] Close the user token in WlxLogoff
This commit is contained in:
@@ -1012,6 +1012,24 @@ WlxIsLogoffOk(
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @implemented
|
||||
*/
|
||||
VOID WINAPI
|
||||
WlxLogoff(
|
||||
PVOID pWlxContext)
|
||||
{
|
||||
PGINA_CONTEXT pgContext = (PGINA_CONTEXT)pWlxContext;
|
||||
|
||||
TRACE("WlxLogoff(%p)\n", pWlxContext);
|
||||
|
||||
/* Close the user token */
|
||||
CloseHandle(pgContext->UserToken);
|
||||
pgContext->UserToken = NULL;
|
||||
}
|
||||
|
||||
|
||||
BOOL WINAPI
|
||||
DllMain(
|
||||
IN HINSTANCE hinstDLL,
|
||||
|
||||
@@ -25,19 +25,6 @@ WlxIsLockOk(
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
VOID WINAPI
|
||||
WlxLogoff(
|
||||
PVOID pWlxContext)
|
||||
{
|
||||
UNREFERENCED_PARAMETER(pWlxContext);
|
||||
|
||||
UNIMPLEMENTED;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* @unimplemented
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user