close the handle returned by OpenProcessToken() (fixes #10129)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57460 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-12-21 02:34:34 +00:00
parent 0468a58a4b
commit a2e50fc2ab

View File

@@ -944,9 +944,11 @@ bool wxShutdown(int WXUNUSED_IN_WINCE(flags))
TOKEN_PRIVILEGES tkp; TOKEN_PRIVILEGES tkp;
// Get the LUID for the shutdown privilege. // Get the LUID for the shutdown privilege.
::LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME, bOK = ::LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME,
&tkp.Privileges[0].Luid); &tkp.Privileges[0].Luid) != 0;
if ( bOK )
{
tkp.PrivilegeCount = 1; // one privilege to set tkp.PrivilegeCount = 1; // one privilege to set
tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; tkp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
@@ -957,6 +959,9 @@ bool wxShutdown(int WXUNUSED_IN_WINCE(flags))
// Cannot test the return value of AdjustTokenPrivileges. // Cannot test the return value of AdjustTokenPrivileges.
bOK = ::GetLastError() == ERROR_SUCCESS; bOK = ::GetLastError() == ERROR_SUCCESS;
} }
::CloseHandle(hToken);
}
} }
if ( bOK ) if ( bOK )