ugly "fix": the constructor was commented out in prop_picker.cxx since
*many* years, so the property browser always leaked memory. I activated this line in property_list.cxx and ... got a crash right there. So this was the reason for it being commented out? Doing the same for now, until I know the exact reason and can really fix it.
This commit is contained in:
parent
4c940a55f9
commit
fdb9e94af3
1 changed files with 3 additions and 1 deletions
|
@ -97,7 +97,9 @@ PropertyList::PropertyList(int minx, int miny, int maxx, int maxy, SGPropertyNod
|
|||
|
||||
PropertyList::~PropertyList()
|
||||
{
|
||||
delete_arrays();
|
||||
// FIXME this seems to cause a crash, which is probably why
|
||||
// commented out in prop_picker.cxx since many years
|
||||
//delete_arrays();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue