This commit is contained in:
DavidXanatos 2023-04-22 11:39:44 +02:00
parent fdd6e1a541
commit b660770b54
3 changed files with 5 additions and 4 deletions

View File

@ -14,7 +14,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.9.1 / 5.64.1] - 2023-
## [1.9.1 / 5.64.1] - 2023-04-??
### Changed
- reworked configuration storage for box grouping
@ -24,6 +24,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed encoding issue with Korean translation [#2833](https://github.com/sandboxie-plus/Sandboxie/issues/2833)
- fixed memory corruption issue with Normal[File/Key]Path [#2588](https://github.com/sandboxie-plus/Sandboxie/issues/2588)
- fixed DPI scaling in the snapshot manager window [#782](https://github.com/sandboxie-plus/Sandboxie/issues/782)
- fixed issue with arm64 DialogProc hook

View File

@ -1,6 +1,6 @@
/*
* Copyright 2004-2020 Sandboxie Holdings, LLC
* Copyright 2020-2021 David Xanatos, xanasoft.com
* Copyright 2020-2023 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
@ -436,7 +436,7 @@ BOOLEAN Dll_SkipHook(const WCHAR *HookName);
void *Dll_JumpStub(void *OldCode, void *NewCode, ULONG_PTR StubArg);
#if !defined(_M_ARM64) && !defined(_M_ARM64EC)
#if !defined(_M_ARM64EC)
ULONG_PTR *Dll_JumpStubData(void);
#endif

View File

@ -448,7 +448,7 @@ _FX DLGPROC Gui_MyDialogProc1(DLGPROC OrigDlgProc, UINT fAnsiFlag)
_FX LRESULT Gui_MyDialogProc2(
HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
#if !defined(_M_ARM64) && !defined(_M_ARM64EC)
#if !defined(_M_ARM64EC)
ULONG_PTR *StubData = Dll_JumpStubData();
#else
ULONG_PTR *StubData = (ULONG_PTR *)lParam;