1.11.3
This commit is contained in:
parent
5421f117fe
commit
d03fc97cb0
|
@ -16,6 +16,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||
|
||||
### Fixed
|
||||
- fixed incorrect text display when changing the password of encrypted boxes or when exporting encrypted boxes [#3296](https://github.com/sandboxie-plus/Sandboxie/pull/3296)
|
||||
- fixed image files not being create as sparse files
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -7321,6 +7321,13 @@ _FX BOOLEAN SbieDll_TranslateNtToDosPath(WCHAR *path)
|
|||
const FILE_DRIVE *drive;
|
||||
ULONG path_len, prefix_len;
|
||||
|
||||
if (_wcsnicmp(path, L"\\??\\", 4) == 0) {
|
||||
|
||||
wmemmove(path, path + 4, wcslen(path) - 4 + 1);
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
if (! File_DrivesAndLinks_CritSec) { // if not sandboxed
|
||||
|
||||
File_DrivesAndLinks_CritSec = Dll_Alloc(sizeof(CRITICAL_SECTION));
|
||||
|
|
Loading…
Reference in New Issue