1.11.4
This commit is contained in:
parent
97afa28e06
commit
63fd7a7d12
|
@ -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)
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue