This commit is contained in:
DavidXanatos 2023-01-10 22:32:29 +01:00
parent bbd242e8db
commit 0f21678699
2 changed files with 11 additions and 7 deletions

View File

@ -8,12 +8,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [1.6.6 / 5.61.6] - 2023-01-?
### fixed
- fixed potential BSOD issue in the driver
### changed
## Changed
- improved trace log retrival greately improving performance
### Fixed
- fixed potential BSOD issue in the driver
- fixed crash in in trace log [#2599](https://github.com/sandboxie-plus/Sandboxie/issues/2599)

View File

@ -37,10 +37,13 @@ public:
stack = top;
}
void dispose() {
if (stack) {
for (auto page : pages)
::free(page);
pages.clear();
stack = nullptr;
}
}
private:
bool grow()