From d8ae5df6ef1ac6ce773f99705af6394c100e5d47 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 14 Jan 2006 06:46:15 +0000 Subject: [PATCH] fix leak --- stepmania/src/GameCommand.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/GameCommand.cpp b/stepmania/src/GameCommand.cpp index a87310d052..8545d0ef09 100644 --- a/stepmania/src/GameCommand.cpp +++ b/stepmania/src/GameCommand.cpp @@ -700,6 +700,7 @@ void GameCommand::ApplySelf( const vector &vpns ) const lua_pushstring( L, i->first ); lua_pushstring( L, i->second ); lua_settable( L, -3 ); + lua_pop( L, 1 ); LUA->Release(L); } if( !m_sSongGroup.empty() )