1.11.4
This commit is contained in:
parent
922f3ea1b6
commit
31e7808512
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue