This commit is contained in:
DavidXanatos 2022-10-25 09:02:11 +02:00
parent 3023a930a8
commit 8c7f485a2c
2 changed files with 5 additions and 2 deletions

View File

@ -15,7 +15,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- properly fixed the Firefox 106 issue [46e9979](https://github.com/sandboxie-plus/Sandboxie/commit/46e99799e2b753b85224dc921ec141a05025acfd)
- fixed issue with alternative UI modes [#2380](https://github.com/sandboxie-plus/Sandboxie/issues/2380)
- fixed command line corruption with breakout processes [#2377](https://github.com/sandboxie-plus/Sandboxie/issues/2377)
- fixed issues with Privacy Enchanced box types
- fixed issues with Privacy Enchanced box types [#2342](https://github.com/sandboxie-plus/Sandboxie/issues/2342)
- fixed issuee with boxed object directroy initialization [#2342](https://github.com/sandboxie-plus/Sandboxie/issues/2342)
## [1.5.0 / 5.60.0] - 2022-10-19

View File

@ -407,7 +407,9 @@ _FX BOOLEAN Ipc_Init(void)
}
//if (!Dll_AlernateIpcNaming) // alternate naming does not need an own namespace
Ipc_CreateObjects();
if (Dll_FirstProcessInBox) {
Ipc_CreateObjects();
}
List_Init(&Ipc_DynamicPortNames);