From f9e40278dde699f598e1480b6adfa60d99d0a847 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 19 Jul 2005 08:52:36 +0000 Subject: [PATCH] fix uninitialized --- stepmania/src/Actor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/Actor.cpp b/stepmania/src/Actor.cpp index 7f878a1d6e..336c7c7ad8 100644 --- a/stepmania/src/Actor.cpp +++ b/stepmania/src/Actor.cpp @@ -118,6 +118,7 @@ Actor::Actor( const Actor &cpy ) { /* Don't copy an Actor in the middle of rendering. */ ASSERT( cpy.m_pTempState == NULL ); + m_pTempState = NULL; #define CPY(x) x = cpy.x CPY( m_sName );