This commit is contained in:
DavidXanatos 2024-11-15 15:39:43 +01:00
parent 012572b110
commit c4fdac1f6a
2 changed files with 16 additions and 12 deletions

View File

@ -24,6 +24,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed deadlock on no op condition when renaming file or folder [#4304](https://github.com/sandboxie-plus/Sandboxie/issues/4304) - fixed deadlock on no op condition when renaming file or folder [#4304](https://github.com/sandboxie-plus/Sandboxie/issues/4304)
- fixed Could not move file or folder [#4329](https://github.com/sandboxie-plus/Sandboxie/issues/4329) - fixed Could not move file or folder [#4329](https://github.com/sandboxie-plus/Sandboxie/issues/4329)
- "Run Sandboxed" from the quick-previewer should have only one option [#4339](https://github.com/sandboxie-plus/Sandboxie/issues/4339) - "Run Sandboxed" from the quick-previewer should have only one option [#4339](https://github.com/sandboxie-plus/Sandboxie/issues/4339)
- Sandboxie causing Firefox Nightly crashes [#4183](https://github.com/sandboxie-plus/Sandboxie/issues/4183)
### Changed ### Changed
- validated compatibility with Windows build 27749 and updated DynData - validated compatibility with Windows build 27749 and updated DynData

View File

@ -282,6 +282,9 @@ _FX BOOLEAN File_Init(void)
} }
} }
// $Workaround$ - 3rd party fix
if (!Dll_CompartmentMode) {
// //
// support for Google Chrome flash plugin process // support for Google Chrome flash plugin process
// //
@ -291,11 +294,11 @@ _FX BOOLEAN File_Init(void)
// "GetVolumeInformationW"); // "GetVolumeInformationW");
//SBIEDLL_HOOK(File_,GetVolumeInformationW); //SBIEDLL_HOOK(File_,GetVolumeInformationW);
// $Workaround$ - 3rd party fix void* WriteProcessMemory =
void *WriteProcessMemory =
GetProcAddress(Dll_KernelBase ? Dll_KernelBase : Dll_Kernel32, GetProcAddress(Dll_KernelBase ? Dll_KernelBase : Dll_Kernel32,
"WriteProcessMemory"); "WriteProcessMemory");
SBIEDLL_HOOK(File_, WriteProcessMemory); SBIEDLL_HOOK(File_, WriteProcessMemory);
}
return TRUE; return TRUE;
} }