From f2696f8ddc9faee59746aa358e1aff7f80e2f075 Mon Sep 17 00:00:00 2001 From: Sebastian G Date: Sun, 10 Mar 2024 08:56:20 +0100 Subject: [PATCH 1/4] Update sandman_de.ts --- SandboxiePlus/SandMan/sandman_de.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SandboxiePlus/SandMan/sandman_de.ts b/SandboxiePlus/SandMan/sandman_de.ts index 74eb76f3..c623c703 100644 --- a/SandboxiePlus/SandMan/sandman_de.ts +++ b/SandboxiePlus/SandMan/sandman_de.ts @@ -3210,7 +3210,7 @@ Nein wählt: %2 Failed to configure hotkey %1, error: %2 - + Konnte Hotkey %1 nicht einrichten, Fehler: %2 From 07f61d3349bdddcf1164d914b666a4a2b660d81d Mon Sep 17 00:00:00 2001 From: Sebastian G Date: Sun, 10 Mar 2024 09:01:02 +0100 Subject: [PATCH 2/4] Update ArchiveThread.cpp --- SandboxiePlus/MiscHelpers/Archive/ArchiveThread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SandboxiePlus/MiscHelpers/Archive/ArchiveThread.cpp b/SandboxiePlus/MiscHelpers/Archive/ArchiveThread.cpp index e1249562..c14ec526 100644 --- a/SandboxiePlus/MiscHelpers/Archive/ArchiveThread.cpp +++ b/SandboxiePlus/MiscHelpers/Archive/ArchiveThread.cpp @@ -76,7 +76,7 @@ QStringList CArchiveThread::GetErrors() } ////////////////////////////////////////////////////////////////////////// -// Buildin 7z Library worker +// Building 7z Library worker // #ifdef USE_7Z From cc16a4d6ae98e78917296a875c2a8e6ba2d7a851 Mon Sep 17 00:00:00 2001 From: Sebastian G Date: Sun, 10 Mar 2024 09:04:05 +0100 Subject: [PATCH 3/4] Update file_init.c --- Sandboxie/core/dll/file_init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sandboxie/core/dll/file_init.c b/Sandboxie/core/dll/file_init.c index 3a0fab4d..a6994128 100644 --- a/Sandboxie/core/dll/file_init.c +++ b/Sandboxie/core/dll/file_init.c @@ -1,6 +1,6 @@ /* * Copyright 2004-2020 Sandboxie Holdings, LLC - * Copyright 2020-2023 David Xanatos, xanasoft.com + * Copyright 2020-2024 David Xanatos, xanasoft.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -885,7 +885,7 @@ _FX void File_InitLinks(THREAD_DATA *TlsData) // add reparse points for all mounted directories // - // This behavioure creates \[BoxRoot]\drive\{guid} fodlers + // This behaviour creates \[BoxRoot]\drive\{guid} folders // instead of using the first mount point on a volume with a letter // @@ -909,7 +909,7 @@ _FX void File_InitLinks(THREAD_DATA *TlsData) // // - // Note: this behavioure makes the first mounted directory + // Note: this behaviour makes the first mounted directory // the location in the box where all files for that volume will be located // other mount points will be redirected to this folder // From 02d67b2fb8b1296d4eaef1efbee60c7bc00a4502 Mon Sep 17 00:00:00 2001 From: Sebastian G Date: Sun, 10 Mar 2024 09:06:29 +0100 Subject: [PATCH 4/4] Update init.c --- Sandboxie/core/low/init.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sandboxie/core/low/init.c b/Sandboxie/core/low/init.c index 8b6ef12d..e7731d8e 100644 --- a/Sandboxie/core/low/init.c +++ b/Sandboxie/core/low/init.c @@ -1,6 +1,6 @@ /* * Copyright 2004-2020 Sandboxie Holdings, LLC - * Copyright 2020-2022 David Xanatos, xanasoft.com + * Copyright 2020-2024 David Xanatos, xanasoft.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -193,7 +193,7 @@ _FX NTSTATUS SbieApi_LogMsg(ULONG64 pNtDeviceIoControlFile, ULONG64 api_device_h _FX NTSTATUS SbieApi_DebugError(SBIELOW_DATA* data, ULONG error) { - // Note: A normal string like L"text" would not resultin position independent code !!! + // Note: A normal string like L"text" would not result in position independent code !!! // hence we create a string array and fill it byte by byte wchar_t text[] = { 'L','o','w','L','e','v','e','l',' ','E','r','r','o','r',':',' ','0','x',0,0,0,0,0,0,0,0,0,0}; @@ -573,7 +573,7 @@ _FX void InitSyscalls(SBIELOW_DATA *data, void * SystemService) _FX NTSTATUS MyImageOptionsEx(PUNICODE_STRING SubKey, PCWSTR ValueName, ULONG Type, PVOID Buffer, ULONG BufferSize, PULONG ReturnedLength, BOOLEAN Wow64, SBIELOW_DATA* data) { - // Note: A normal string like L"LoadCHPEBinaries" would not resultin position independent code !!! + // Note: A normal string like L"LoadCHPEBinaries" would not result in position independent code !!! wchar_t LoadCHPEBinaries[] = { 'L','o','a','d','C','H','P','E','B','i','n','a','r','i','e','s',0 }; PCWSTR ptr = ValueName; for (PCWSTR tmp = LoadCHPEBinaries; *ptr && *tmp && *ptr == *tmp; ptr++, tmp++);