diff options
Diffstat (limited to 'linden/indra/llcharacter/llkeyframemotionparam.cpp')
-rw-r--r-- | linden/indra/llcharacter/llkeyframemotionparam.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linden/indra/llcharacter/llkeyframemotionparam.cpp b/linden/indra/llcharacter/llkeyframemotionparam.cpp index 5970909..d24b8a6 100644 --- a/linden/indra/llcharacter/llkeyframemotionparam.cpp +++ b/linden/indra/llcharacter/llkeyframemotionparam.cpp | |||
@@ -187,6 +187,12 @@ BOOL LLKeyframeMotionParam::onUpdate(F32 time, U8* joint_mask) | |||
187 | ParameterizedMotion* firstMotion = NULL; | 187 | ParameterizedMotion* firstMotion = NULL; |
188 | ParameterizedMotion* secondMotion = NULL; | 188 | ParameterizedMotion* secondMotion = NULL; |
189 | 189 | ||
190 | if (NULL == paramValue) // unexpected, but... | ||
191 | { | ||
192 | llwarns << "paramValue == NULL" << llendl; | ||
193 | continue; | ||
194 | } | ||
195 | |||
190 | for (ParameterizedMotion* paramMotion = motionList->getFirstData(); paramMotion; paramMotion = motionList->getNextData()) | 196 | for (ParameterizedMotion* paramMotion = motionList->getFirstData(); paramMotion; paramMotion = motionList->getNextData()) |
191 | { | 197 | { |
192 | paramMotion->first->onUpdate(time, joint_mask); | 198 | paramMotion->first->onUpdate(time, joint_mask); |