This commit is contained in:
DavidXanatos 2023-10-02 08:15:51 +02:00
parent 922f3ea1b6
commit 31e7808512
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed issue with programs installed in the sandbox not being displayed via Run from Start Menu [#3334](https://github.com/sandboxie-plus/Sandboxie/issues/3334)
- fixed issue with NtQueryDirectoryObject [#3310](https://github.com/sandboxie-plus/Sandboxie/issues/3310)
- fixed Some GUI functions use the wrong box path if the FileRootPath value starts with Volume{GUID} [#3345](https://github.com/sandboxie-plus/Sandboxie/issues/3345)
- fixed If a program is run on RAM and Encrypted boxes when the sandbox root folder is not present, the programs will not run [#3349](https://github.com/sandboxie-plus/Sandboxie/issues/3349)
## [1.11.3 / 5.66.3] - 2023-09-27

View File

@ -506,7 +506,7 @@ HANDLE MountManager::OpenOrCreateNtFolder(const WCHAR* NtPath)
if (__sys_SHCreateDirectoryExW(NULL, dosPath, NULL) != ERROR_SUCCESS)
return NULL;
status = NtCreateFile(&handle, GENERIC_READ | GENERIC_WRITE, &objattrs, &IoStatusBlock, NULL, 0, FILE_SHARE_VALID_FLAGS, FILE_OPEN_IF, FILE_OPEN_REPARSE_POINT, NULL, 0);
status = NtCreateFile(&handle, GENERIC_READ | GENERIC_WRITE, &objattrs, &IoStatusBlock, NULL, 0, FILE_SHARE_VALID_FLAGS, FILE_OPEN_IF, FILE_DIRECTORY_FILE | FILE_OPEN_REPARSE_POINT, NULL, 0);
}
if (!NT_SUCCESS(status))
return NULL;