diff options
| -rwxr-xr-x | indra/newview/pipeline.cpp | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index bed53093ce..c144a07512 100755 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -6951,10 +6951,18 @@ LLViewerObject* LLPipeline::lineSegmentIntersectInWorld(const LLVector4a& start,  		{  			local_tangent = *tangent;  		} +		else +		{ +			local_tangent.clear(); +		}  		if (normal)  		{  			local_normal = *normal;  		} +		else +		{ +			local_normal.clear(); +		}  		const F32 ATTACHMENT_OVERRIDE_DIST = 0.1f; | 
