Skip to content

Commit

Permalink
1.12.4
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Dec 13, 2023
1 parent 3dfda45 commit 37d6ca6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### Fixed
- fixed running sandboxed processes located in a imdisk volume [#3472](https://github.com/sandboxie-plus/Sandboxie/discussions/3472)
- fixed sample 634d066fd4f9a8b201a3ddf346e880be unable to be terminate on windows 7 x64 [#3482](https://github.com/sandboxie-plus/Sandboxie/issues/3482)

### Changed
- without an active, non expired, supporter certificate, automatic updates/downloads are not longer available for the stable channel
Expand Down
2 changes: 1 addition & 1 deletion Sandboxie/core/svc/ProcessServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ BOOL ProcessServer::KillProcess(ULONG ProcessId)
if (! hProcess)
LastError = GetLastError() * 10000;
else {
ok = TerminateProcess(hProcess, 1);
ok = TerminateProcess(hProcess, DBG_TERMINATE_PROCESS);
if (! ok)
LastError = GetLastError();
CloseHandle(hProcess);
Expand Down

0 comments on commit 37d6ca6

Please sign in to comment.