-
```
add a widget, and remove it. The memory footprint should reduce to the level
before adding the widget.
Moving the the QAbstractTableModel for Rtable qtWidget does not function
like this.
```
…
-
```
Start HeeksCAD.
Create a cube.
Close HeeksCAD.
There is undeleted memory, that was allocated here, in
UndoEngine::GetModificationsRecursive:
if(old_children.find(*it) == old_children.end…
-
```
The memory allocated to the resamplers array on line 80 in test.cpp has no
corresponding call to delete.
80 Resampler* resamplers[max_components]; // memory allocated to this array
is never …
-
```
It looks like in mac/ActivatePane/ActivatePane.m, CFObjects created by
functions that include Create in their names are not released by CFRelease.
Basically, I think the CFObjects need to be rel…
-
```
Start HeeksCAD.
Create a cube.
Close HeeksCAD.
There is undeleted memory, that was allocated here, in
UndoEngine::GetModificationsRecursive:
if(old_children.find(*it) == old_children.end…
-
If there is a timeout, the offheap data structure is never recovered. Should convert so only immutable objects are available to Akka Streams.
https://gist.github.com/wsargent/efa642b7c0fdce53d6a1
`…
-
```
FYI...
From r16. Attached is the output of running the test app through valgrind. i
haven't looked closely enough to see if these were intentional or not, but
thought i'd report them nonetheles…
-
```
The problem is in method animatedSetValue_.
This code needs disposing:
if (this.currentAnimation_) {
this.currentAnimation_.stop(true);
}
This is fix:
if (this.currentAnimation_) {
this…
-
There seems to be no way to stop the threads created in `AsyncExecutor`, this affects mostly WhenFactory.createAsync()
-
Noticed that there are the following leftover comments in the code about memory leaks:
```
c:\code\binaryen\src\emscripten-optimizer\istring.h:
75: char *copy = (char*)malloc(strlen(s)+1);…