From 187221d2542abce4eb06a5254faa7f0577a0f8b6 Mon Sep 17 00:00:00 2001 From: DavidXanatos Date: Sun, 8 Aug 2021 20:28:16 +0200 Subject: [PATCH] Build 0.9.3 --- CHANGELOG.md | 2 +- SandboxiePlus/QSbieAPI/SbieAPI.cpp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b30f21df..8379d527 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 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 UserSettings introduced in a recent build [#1054](https://github.com/sandboxie-plus/Sandboxie/issues/1054) ## [0.9.2 / 5.51.2] - 2021-08-07 diff --git a/SandboxiePlus/QSbieAPI/SbieAPI.cpp b/SandboxiePlus/QSbieAPI/SbieAPI.cpp index 11bd252d..8bb5c246 100644 --- a/SandboxiePlus/QSbieAPI/SbieAPI.cpp +++ b/SandboxiePlus/QSbieAPI/SbieAPI.cpp @@ -307,8 +307,7 @@ SB_STATUS CSbieAPI::Connect(bool withQueue) m_IniPath = GetIniPath(&bHome); qDebug() << "Config file:" << m_IniPath << (bHome ? "(home)" : "(system)"); - if (m_pUserSection == NULL) - { + if (m_UserName.isEmpty()) { QString UserSection = GetUserSection(&m_UserName); if(!UserSection.isEmpty()) m_pUserSection = new CSbieIni(UserSection, this, this);