1.6.6
This commit is contained in:
parent
bbd242e8db
commit
0f21678699
|
@ -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)
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -37,10 +37,13 @@ public:
|
|||
stack = top;
|
||||
}
|
||||
void dispose() {
|
||||
if (stack) {
|
||||
for (auto page : pages)
|
||||
::free(page);
|
||||
pages.clear();
|
||||
stack = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
bool grow()
|
||||
|
|
Loading…
Reference in New Issue