Fixed pre-login shutdown crash due to unitialized variables

This commit is contained in:
Shyotl
2011-09-19 20:12:24 -05:00
parent a9b8712aa5
commit 0ace809572

View File

@@ -130,7 +130,11 @@ LLViewerParcelMgr::LLViewerParcelMgr()
mCollisionBanned(0),
mCollisionTimer(),
mMediaParcelId(0),
mMediaRegionId(0)
mMediaRegionId(0),
mHighlightSegments(NULL),
mCollisionSegments(NULL),
mAgentParcelOverlay(NULL),
mParcelsPerEdge(0)
{
mCurrentParcel = new LLParcel();
mCurrentParcelSelection = new LLParcelSelection(mCurrentParcel);