Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Jan 26, 2025
1 parent 3e13823 commit a596916
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed Template scanning is not working properly [#4401](https://github.com/sandboxie-plus/Sandboxie/issues/4401)
- fixed credentials dialog does not display when connecting to rdp server by mstsc.exe in encrypted box [#4389](https://github.com/sandboxie-plus/Sandboxie/issues/4389)
- fixed Recovering a folder only moves the files inside that folder [#4453](https://github.com/sandboxie-plus/Sandboxie/issues/4453)
- fixed Failure to query file properties causes program exceptions [#4457](https://github.com/sandboxie-plus/Sandboxie/issues/4457) (thanks lmou523)



Expand Down
3 changes: 1 addition & 2 deletions Sandboxie/core/dll/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -1375,8 +1375,7 @@ _FX NTSTATUS File_GetName(
&& 0 == _wcsnicmp(
name, File_Wow64SysNative, File_Wow64SysNativeLen)
&& (name[File_Wow64SysNativeLen] == L'\\' ||
name[File_Wow64SysNativeLen] == L'\0')
&& (! File_GetName_SkipWow64Link(L""))) {
name[File_Wow64SysNativeLen] == L'\0')) {

name = *OutTruePath;

Expand Down

0 comments on commit a596916

Please sign in to comment.