summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-01-29 14:29:28 -0800
committerTofu Linden <tofu.linden@lindenlab.com>2010-01-29 14:29:28 -0800
commit47a7262713b9576304546f5ab139d2ca67c6c8e7 (patch)
tree361469dce35f6a2cfa369b4fc33397ec6614fe7c /indra
parentabd24efbf1182596db19e27ee4e9cacb28a4a9d7 (diff)
CID-335
Checker: UNINIT_CTOR Function: LLKeyframeWalkMotion::LLKeyframeWalkMotion(const LLUUID &) File: /indra/llcharacter/llkeyframewalkmotion.cpp
Diffstat (limited to 'indra')
-rw-r--r--indra/llcharacter/llkeyframewalkmotion.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/indra/llcharacter/llkeyframewalkmotion.cpp b/indra/llcharacter/llkeyframewalkmotion.cpp
index b5817e5bde..d18f924b55 100644
--- a/indra/llcharacter/llkeyframewalkmotion.cpp
+++ b/indra/llcharacter/llkeyframewalkmotion.cpp
@@ -58,11 +58,15 @@ const F32 MAX_ROLL = 0.6f;
// LLKeyframeWalkMotion()
// Class Constructor
//-----------------------------------------------------------------------------
-LLKeyframeWalkMotion::LLKeyframeWalkMotion(const LLUUID &id) : LLKeyframeMotion(id)
+LLKeyframeWalkMotion::LLKeyframeWalkMotion(const LLUUID &id)
+ : LLKeyframeMotion(id),
+
+ mCharacter(NULL),
+ mCyclePhase(0.0f),
+ mRealTimeLast(0.0f),
+ mAdjTimeLast(0.0f),
+ mDownFoot(0.0f)
{
- mRealTimeLast = 0.0f;
- mAdjTimeLast = 0.0f;
- mCharacter = NULL;
}