diff options
| author | Xiaohong Bao <bao@lindenlab.com> | 2010-04-02 10:33:20 -0600 | 
|---|---|---|
| committer | Xiaohong Bao <bao@lindenlab.com> | 2010-04-02 10:33:20 -0600 | 
| commit | 8cd95bd12a238c99052cff9195b39467d22e1275 (patch) | |
| tree | 65acf30291e2e8f00d59812430987426b747d7c6 /indra | |
| parent | 309d94452b43361e13c599c1d14b706a3c46aad6 (diff) | |
add some debug code for EXT-5394: Crash in LLViewerMediaImpl::calculateInterest()
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llviewermedia.cpp | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp index 6f0d9cdd95..5474eeb486 100644 --- a/indra/newview/llviewermedia.cpp +++ b/indra/newview/llviewermedia.cpp @@ -2875,7 +2875,13 @@ void LLViewerMediaImpl::calculateInterest()  	if(!mObjectList.empty())  	{  		// Just use the first object in the list.  We could go through the list and find the closest object, but this should work well enough. -		LLVector3d global_delta = gAgent.getPositionGlobal() - (*mObjectList.begin())->getPositionGlobal(); +		std::list< LLVOVolume* >::iterator iter = mObjectList.begin() ; +		LLVOVolume* objp = *iter ; +		llassert_always(objp != NULL) ; + +		LLVector3d obj_global = objp->getPositionGlobal() ; +		LLVector3d agent_global = gAgent.getPositionGlobal() ; +		LLVector3d global_delta = agent_global - obj_global ;  		mProximityDistance = global_delta.magVecSquared();  // use distance-squared because it's cheaper and sorts the same.  	} | 
