diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f86de4b..b693df7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - fixed Sign the .tmp file that gets dropped when installing or updating Sandboxie Plus [#2643](https://github.com/sandboxie-plus/Sandboxie/issues/2643) +- fixed issue with DLL unloading - fixed Files Resource Access - Browse for Folder - allows access to excluded folders [#4007](https://github.com/sandboxie-plus/Sandboxie/issues/4007) diff --git a/Sandboxie/core/dll/ldr.c b/Sandboxie/core/dll/ldr.c index 919d7871..e45341ed 100644 --- a/Sandboxie/core/dll/ldr.c +++ b/Sandboxie/core/dll/ldr.c @@ -696,7 +696,7 @@ _FX void Ldr_CallDllCallbacks(void) if (!found) { __my_Ldr_CallOneDllCallback(pOld->Path + pOld->NameOffset, - pNew->ImageBaseAddress, FALSE); + pOld->ImageBaseAddress, FALSE); } } }