From 671c43a9be97552a929380624a9ef468a24e8aa6 Mon Sep 17 00:00:00 2001 From: DavidXanatos <3890945+DavidXanatos@users.noreply.github.com> Date: Sun, 26 Nov 2023 13:54:04 +0100 Subject: [PATCH] 1.12.2 --- CHANGELOG.md | 1 + SandboxiePlus/SandMan/Windows/OptionsForce.cpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf212cbb..e8812ea9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). - fixed issue with Microsoft Edge when using AutoDelete option [#post-3173507](https://www.wilderssecurity.com/threads/sandboxie-plus-v1-12-1-pre-release.452939/#post-3173507) - fixed warning issue `Acrobat.exe: SBIE2205 Service not implemented: CredEnumerateA` [#issuecomment-1826280016](https://github.com/sandboxie-plus/Sandboxie/issues/3441#issuecomment-1826280016) - fixed UNEXPECTED_KERNEL_MODE_TRAP BSOD when opening any web link from sandboxed Microsoft 365 app (e.g. Outlook, Word) [#3427](https://github.com/sandboxie-plus/Sandboxie/issues/3427) +- fixed issue with force process warning message ## [1.12.1 / 5.67.1] - 2023-11-23 diff --git a/SandboxiePlus/SandMan/Windows/OptionsForce.cpp b/SandboxiePlus/SandMan/Windows/OptionsForce.cpp index 6d07dc0a..6be3c326 100644 --- a/SandboxiePlus/SandMan/Windows/OptionsForce.cpp +++ b/SandboxiePlus/SandMan/Windows/OptionsForce.cpp @@ -287,9 +287,9 @@ bool COptionsWindow::CheckForcedItem(const QString& Value, int type) bDangerous = true; else if (Value.compare("taskmgr.exe", Qt::CaseInsensitive) == 0 || Value.compare(winPath + "\\system32\\taskmgr.exe", Qt::CaseInsensitive) == 0) bDangerous = true; - else if (Value.contains("sbiesvc.exe", Qt::CaseInsensitive) == 0) + else if (Value.contains("sbiesvc.exe", Qt::CaseInsensitive)) bDangerous = true; - else if (Value.contains("sandman.exe", Qt::CaseInsensitive) == 0) + else if (Value.contains("sandman.exe", Qt::CaseInsensitive)) bDangerous = true; } else