diff --git a/src/minidexed.cpp b/src/minidexed.cpp index 1b46146..429fddc 100644 --- a/src/minidexed.cpp +++ b/src/minidexed.cpp @@ -1841,8 +1841,9 @@ void CMiniDexed::SetVoiceName (std::string VoiceName, unsigned nTG) { assert (nTG < CConfig::ToneGenerators); assert (m_pTG[nTG]); - char Name[10]; + char Name[11]; strncpy(Name, VoiceName.c_str(),10); + Name[10] = '\0'; m_pTG[nTG]->getName (Name); }