This commit is contained in:
DavidXanatos 2023-09-30 19:34:17 +02:00
parent 97afa28e06
commit 63fd7a7d12
2 changed files with 7 additions and 1 deletions

View File

@ -16,6 +16,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- fixed issue with unmounting protected images [#3347](https://github.com/sandboxie-plus/Sandboxie/issues/3347)
- fixed Unable to turn off highlight in Sbie Messages search results [#3338](https://github.com/sandboxie-plus/Sandboxie/issues/3338)
- fixed cannot display programs installed in the sandbox via Run from Start Menu [#3334](https://github.com/sandboxie-plus/Sandboxie/issues/3334)

View File

@ -963,9 +963,13 @@ _FX FILE_LINK *File_AddTempLink(WCHAR *path)
&IoStatusBlock, NULL, 0, FILE_SHARE_VALID_FLAGS,
FILE_OPEN, FILE_DIRECTORY_FILE | FILE_SYNCHRONOUS_IO_NONALERT | FILE_OPEN_REPARSE_POINT,
NULL, 0);
if (!NT_SUCCESS(status))
UserReparse = FALSE;
}
}
else {
if (!UserReparse) {
RtlInitUnicodeString(&objname, path);