|
Description
|
Against the current public viewer 1.20.2(0) branch (r479)
The constructor of LLFloaterProperties (in llfloaterproperties.cpp) adds an LLPropertiesObserver instance to the global inventory model gInventory.
Problem is that this instance has recently been made a Singleton, so it's actually static.
At shutdown the global destructor of gInventory deletes all observers that are still in its list which of course is a bad idea for a singleton instance.
|
Against the current public viewer 1.20.2(0) branch (r479)
The constructor of LLFloaterProperties (in llfloaterproperties.cpp) adds an LLPropertiesObserver instance to the global inventory model gInventory.
Problem is that this instance has recently been made a singleton, so it's actually static.
At shutdown the global destructor of gInventory deletes all observers that are still in its list which of course is a bad idea for a singleton instance.
|