fix a seg fault in sp.cs

avinationmerge
UbitUmarov 2012-06-25 00:44:09 +01:00
parent 1468b01afc
commit 9ca9770cf6
1 changed files with 2 additions and 1 deletions

View File

@ -3570,7 +3570,8 @@ namespace OpenSim.Region.Framework.Scenes
// m_reprioritizationTimer.Dispose();
RemoveFromPhysicalScene();
Animator.Close();
if(Animator != null)
Animator.Close();
Animator = null;
}