Build 0.9.3

This commit is contained in:
DavidXanatos 2021-08-08 20:28:16 +02:00
parent db35fbb6e5
commit 187221d254
2 changed files with 2 additions and 3 deletions

View File

@ -18,7 +18,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed multiple program grouping issues with the sandman ui [#1054](https://github.com/sandboxie-plus/Sandboxie/issues/1054) - fixed multiple program grouping issues with the sandman ui [#1054](https://github.com/sandboxie-plus/Sandboxie/issues/1054)
- fixed no disk error [#966](https://github.com/sandboxie-plus/Sandboxie/issues/966) - fixed no disk error [#966](https://github.com/sandboxie-plus/Sandboxie/issues/966)
- fixed issue with 32bit build using qMake, the /O2 option resulted in a crash in teh QSbieDll.dll [#995](https://github.com/sandboxie-plus/Sandboxie/issues/995) - fixed issue with 32bit build using qMake, the /O2 option resulted in a crash in teh QSbieDll.dll [#995](https://github.com/sandboxie-plus/Sandboxie/issues/995)
- fixed issue with UserSettings introduced in a recent build [#1054](https://github.com/sandboxie-plus/Sandboxie/issues/1054)
## [0.9.2 / 5.51.2] - 2021-08-07 ## [0.9.2 / 5.51.2] - 2021-08-07

View File

@ -307,8 +307,7 @@ SB_STATUS CSbieAPI::Connect(bool withQueue)
m_IniPath = GetIniPath(&bHome); m_IniPath = GetIniPath(&bHome);
qDebug() << "Config file:" << m_IniPath << (bHome ? "(home)" : "(system)"); qDebug() << "Config file:" << m_IniPath << (bHome ? "(home)" : "(system)");
if (m_pUserSection == NULL) if (m_UserName.isEmpty()) {
{
QString UserSection = GetUserSection(&m_UserName); QString UserSection = GetUserSection(&m_UserName);
if(!UserSection.isEmpty()) if(!UserSection.isEmpty())
m_pUserSection = new CSbieIni(UserSection, this, this); m_pUserSection = new CSbieIni(UserSection, this, this);