1.14.5
This commit is contained in:
parent
7ce9575598
commit
5d898c67cf
|
@ -25,6 +25,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
- changed reg path to key "HKCU\\System\\SbieCustom", value: "SMBiosTable"
|
- changed reg path to key "HKCU\\System\\SbieCustom", value: "SMBiosTable"
|
||||||
- added UI options
|
- added UI options
|
||||||
- fixed schannel error SEC_E_SECPKG_NOT_FOUND in encrypted sandboxes [#4081](https://github.com/sandboxie-plus/Sandboxie/issues/4081)
|
- fixed schannel error SEC_E_SECPKG_NOT_FOUND in encrypted sandboxes [#4081](https://github.com/sandboxie-plus/Sandboxie/issues/4081)
|
||||||
|
- fixed The name of the sandbox is too long, causing an error in sbie2327 [#4064](https://github.com/sandboxie-plus/Sandboxie/issues/4064)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- the certificate format can now take an explicit validity days specification, needed for gapless certificate renewal
|
- the certificate format can now take an explicit validity days specification, needed for gapless certificate renewal
|
||||||
|
|
|
@ -1348,7 +1348,7 @@ void ComServer::RunSlave(const WCHAR *cmdline)
|
||||||
// locate IPC objects set up by the parent process SbieSvc
|
// locate IPC objects set up by the parent process SbieSvc
|
||||||
//
|
//
|
||||||
|
|
||||||
if (wcslen(cmdline) > 100)
|
if (wcslen(cmdline) > 128)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (wcsstr(cmdline, SANDBOXIE L"_ComProxy_ComServer:")) {
|
if (wcsstr(cmdline, SANDBOXIE L"_ComProxy_ComServer:")) {
|
||||||
|
@ -1365,7 +1365,7 @@ void ComServer::RunSlave(const WCHAR *cmdline)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
WCHAR objname[192];
|
WCHAR objname[256];
|
||||||
wcscpy(objname, _Global);
|
wcscpy(objname, _Global);
|
||||||
wcscat(objname, cmdline);
|
wcscat(objname, cmdline);
|
||||||
WCHAR *colon = wcsrchr(objname, L':');
|
WCHAR *colon = wcsrchr(objname, L':');
|
||||||
|
|
Loading…
Reference in New Issue