diff options
| author | Todd Stinson <stinson@lindenlab.com> | 2012-05-07 15:53:36 -0700 | 
|---|---|---|
| committer | Todd Stinson <stinson@lindenlab.com> | 2012-05-07 15:53:36 -0700 | 
| commit | c997d4399a5a677fdfed935b727af8d0e18281dc (patch) | |
| tree | f6d1d71e97808319cb75a84d79993cf666c26551 /indra | |
| parent | 45206762319316289ef11595a5f6c974a7466f74 (diff) | |
PATh-621: BUGFIX Fixing an issue where attempting to apply changes from the pathfinding linksets floater with no real data changes causes a viewer crash.
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llfloaterpathfindinglinksets.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llfloaterpathfindinglinksets.cpp b/indra/newview/llfloaterpathfindinglinksets.cpp index 8313226817..37c501b442 100644 --- a/indra/newview/llfloaterpathfindinglinksets.cpp +++ b/indra/newview/llfloaterpathfindinglinksets.cpp @@ -397,7 +397,7 @@ void LLFloaterPathfindingLinksets::handleUpdateLinksets(LLPathfindingManager::re  			{  				mLinksetsListPtr = pLinksetsListPtr;  			} -			else +			else if (pLinksetsListPtr != NULL)  			{  				mLinksetsListPtr->update(*pLinksetsListPtr);  			} | 
