This commit is contained in:
DavidXanatos 2024-11-13 12:59:27 +01:00
parent 942f2d3014
commit fc400020ad
2 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed Sign the .tmp file that gets dropped when installing or updating Sandboxie Plus [#2643](https://github.com/sandboxie-plus/Sandboxie/issues/2643)
- fixed issue with DLL unloading
- fixed Files Resource Access - Browse for Folder - allows access to excluded folders [#4007](https://github.com/sandboxie-plus/Sandboxie/issues/4007)
- fixed "ForceDisableAdminOnly" is weird [#4233](https://github.com/sandboxie-plus/Sandboxie/issues/4233)
### Changed
- validated compatibility with Windows build 27744 and updated DynData

View File

@ -371,7 +371,7 @@ MSG_HEADER *SbieIniServer::GetUser(MSG_HEADER *msg)
bool ok2 = SetUserSettingsSectionName(hToken);
BOOLEAN admin = FALSE;
if (ok2 && TokenIsAdmin(hToken, true))
if (ok2 && TokenIsAdmin(hToken))
admin = TRUE;
CloseHandle(hToken);