1.12.0
This commit is contained in:
parent
29fb8adca1
commit
a49df8d63e
|
@ -30,7 +30,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
### Fixed
|
||||
- fixed issue with auto updater not offering version updates
|
||||
- fixed issue with new symlink handling code [#3340](https://github.com/sandboxie-plus/Sandboxie/issues/3340)
|
||||
- fixed issue with Scm_StartServiceCtrlDispatcherX not behaving correctly when nor tun as service [#1246](https://github.com/sandboxie-plus/Sandboxie/issues/1246)
|
||||
- fixed issue with Scm_StartServiceCtrlDispatcherX not behaving correctly when not run as service [#1246](https://github.com/sandboxie-plus/Sandboxie/issues/1246) [#3297](https://github.com/sandboxie-plus/Sandboxie/issues/3297)
|
||||
- fixed Issue with configuring the original folder of a symbolic link created using mklink to OpenPipePath [#3207](https://github.com/sandboxie-plus/Sandboxie/issues/3207)
|
||||
|
||||
### Removed
|
||||
- removed obsolete /nosbiectrl switch [#3391](https://github.com/sandboxie-plus/Sandboxie/issues/3391)
|
||||
|
|
|
@ -2791,7 +2791,7 @@ ReparseLoop:
|
|||
ShareAccess, CreateDisposition, CreateOptions,
|
||||
EaBuffer, EaLength);
|
||||
|
||||
if (status == STATUS_ACCESS_DENIED &&
|
||||
if ((status == STATUS_ACCESS_DENIED || status == STATUS_OBJECT_NAME_NOT_FOUND) &&
|
||||
(FileFlags & FGN_REPARSED_OPEN_PATH)) {
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue