From 999b0b47b59cb6be6f229066825bdec88f00304e Mon Sep 17 00:00:00 2001
From: "Brad Payne (Vir Linden)" <vir@lindenlab.com>
Date: Thu, 29 Jun 2017 14:15:58 +0100
Subject: [PATCH] SL-722 - crash fix

---
 indra/newview/llvovolume.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp
index b22d1c45a8d..911575138b6 100644
--- a/indra/newview/llvovolume.cpp
+++ b/indra/newview/llvovolume.cpp
@@ -3320,6 +3320,10 @@ bool LLVOVolume::canBeAnimatedObject() const
     {
         return false;
     }
+	if (!getVolume())
+	{
+		return false;
+	}
 	const LLMeshSkinInfo* skin = gMeshRepo.getSkinInfo(getVolume()->getParams().getSculptID(), this);
     if (!skin)
     {
-- 
GitLab