From 084b77be50e5f44a26a53b9b6517b97acc2cd175 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Thu, 28 Mar 2013 11:37:49 -0700 Subject: [PATCH] NULL sphere pointer on Head copy --- interface/src/Head.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interface/src/Head.cpp b/interface/src/Head.cpp index 029efe507e..acb52f2189 100644 --- a/interface/src/Head.cpp +++ b/interface/src/Head.cpp @@ -135,6 +135,8 @@ Head::Head(const Head &otherHead) { browAudioLift = otherHead.browAudioLift; noise = otherHead.noise; + sphere = NULL; + Hand newHand = Hand(*otherHead.hand); hand = &newHand; }