Skip to content
Snippets Groups Projects
Commit 87f424c6 authored by Josh Bell's avatar Josh Bell
Browse files

Merge fix for SL-46373 / VWR-1369 / Intermittent Crash on Edit from Pie Menu

NOTE: Only a partial merge from maintenance!!!!
svn merge -r 64309:64310 svn+ssh://svn.lindenlab.com/svn/linden/branches/maintenance --> release
parent afaeeb49
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,12 @@ class LLVOInventoryListener
void requestVOInventory();
private:
LLPointer<LLViewerObject> mListenerVObject;
// LLViewerObject is normally wrapped by an LLPointer, but not in
// this case, because it's already sure to be kept alive by
// LLPointers held by other objects that have longer lifetimes
// than this one. Plumbing correct LLPointer usage all the way
// down here has been deemed too much work for now.
LLViewerObject *mListenerVObject;
};
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment