Merge branch 'master' of https://github.com/sandboxie-plus/Sandboxie
This commit is contained in:
commit
77f8af3a60
|
@ -28,6 +28,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
- fixed grouping issues in SandMan UI [#1358](https://github.com/sandboxie-plus/Sandboxie/issues/1358)
|
- fixed grouping issues in SandMan UI [#1358](https://github.com/sandboxie-plus/Sandboxie/issues/1358)
|
||||||
- fixed issue with EnableWin32kHooks [#1458](https://github.com/sandboxie-plus/Sandboxie/issues/1458)
|
- fixed issue with EnableWin32kHooks [#1458](https://github.com/sandboxie-plus/Sandboxie/issues/1458)
|
||||||
|
|
||||||
|
### Installers re-released with the following fix:
|
||||||
|
- fixed regression when launching Office apps [#1468](https://github.com/sandboxie-plus/Sandboxie/issues/1468)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## [1.0.4 / 5.55.4] - 2021-12-20
|
## [1.0.4 / 5.55.4] - 2021-12-20
|
||||||
|
|
|
@ -182,8 +182,8 @@ _FX void Ldr_LoadInjectDlls(BOOLEAN bHostInject)
|
||||||
WCHAR *dllname = Dll_AllocTemp(MAX_PATH * 2 * sizeof(WCHAR));
|
WCHAR *dllname = Dll_AllocTemp(MAX_PATH * 2 * sizeof(WCHAR));
|
||||||
ULONG index = 0;
|
ULONG index = 0;
|
||||||
|
|
||||||
WCHAR *path = Dll_AllocTemp(1024 * sizeof(WCHAR));
|
WCHAR *path = Dll_AllocTemp(1024 * sizeof(WCHAR));
|
||||||
SbieApi_GetHomePath(NULL, 0, path, 1020);
|
SbieApi_GetHomePath(NULL, 0, path, 1020);
|
||||||
|
|
||||||
if (!__sys_LdrLoadDll)
|
if (!__sys_LdrLoadDll)
|
||||||
__sys_LdrLoadDll = (P_LdrLoadDll)GetProcAddress(Dll_Ntdll, "LdrLoadDll");
|
__sys_LdrLoadDll = (P_LdrLoadDll)GetProcAddress(Dll_Ntdll, "LdrLoadDll");
|
||||||
|
@ -201,7 +201,7 @@ _FX void Ldr_LoadInjectDlls(BOOLEAN bHostInject)
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// For expidient use we allow to enter the dll name without a path
|
// For expedient use we allow to enter the dll name without a path
|
||||||
// starting with \ in that case the DLL is looked for in %SbieHome%
|
// starting with \ in that case the DLL is looked for in %SbieHome%
|
||||||
//
|
//
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue