SetVoiceName() suggested by @diyelectromusic

pull/649/head
probonopd 10 months ago committed by GitHub
parent 8306fcddbf
commit ae93f8e476
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 12
      src/minidexed.cpp

@ -1767,15 +1767,9 @@ void CMiniDexed::SetVoiceName(std::string VoiceName, unsigned nTG)
{ {
assert (nTG < CConfig::ToneGenerators); assert (nTG < CConfig::ToneGenerators);
assert (m_pTG[nTG]); assert (m_pTG[nTG]);
char Name[11];
// Define a buffer with enough space for the string and null terminator strncpy(Name, VoiceName.c_str(),10);
char Name[VoiceName.size() + 1]; Name[10] = '\0';
// Copy the string and ensure null termination
strncpy(Name, VoiceName.c_str(), VoiceName.size());
Name[VoiceName.size()] = '\0';
// Pass the null-terminated string to getName
m_pTG[nTG]->getName (Name); m_pTG[nTG]->getName (Name);
} }

Loading…
Cancel
Save