Age | Commit message (Collapse) | Author |
|
|
|
Thanks to wjp for the suggestion
|
|
Free the pixel data of each entry in the _dynamicPhases array before
emptying it
|
|
The TODO in the code in question should be reviewed, but the call to
freePixelData() unconditionally deleted the original bitmap, which is
not correct
|
|
|
|
|
|
|
|
|
|
|
|
There are several calls to loadFile() with _memfilename, which is why
these two changes are interconnected
|
|
|
|
Fixes part of bug #9654.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
constructor
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Since _points is allocated with realloc(), it should be freed with
free(), not delete.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
The compiler was super-optimizing there, and my initial untangling
was incorrect. Restoring it with nasty goto's and will fix it later
once we have enough test cases.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|