Merge pull request #143 from Lukas-W/stable-0.4

Fix a mismatched delete, update authors
This commit is contained in:
Tobias Doerffel
2014-01-25 11:10:27 -08:00
2 changed files with 5 additions and 1 deletions

View File

@@ -17,6 +17,10 @@ Danny McRae
Javier Serrano Polo
<jasp00/at/terra/dot/es>
Development
Lukas Wohlschläger
<lukaswhl/at/gmail/dot/com>
Development
Andrew Kelley
<superjoe30/at/gmail/dot/com>

View File

@@ -201,7 +201,7 @@ song::~song()
}
if( m_SncVSTplug != NULL )
{
delete m_SncVSTplug;
free( m_SncVSTplug );
m_SncVSTplug = NULL;
}
}