Skip to content

Commit

Permalink
Fix remote plugin crash reading parameters from Grooove plugin (LMMS#…
Browse files Browse the repository at this point in the history
  • Loading branch information
DomClark committed Nov 17, 2019
1 parent a08a57d commit eeab8ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/vst_base/RemoteVstPlugin.cpp
Expand Up @@ -1072,7 +1072,7 @@ void RemoteVstPlugin::getParameterDump()

for( int i = 0; i < m_plugin->numParams; ++i )
{
char paramName[32];
char paramName[256];
memset( paramName, 0, sizeof( paramName ) );
pluginDispatch( effGetParamName, i, 0, paramName );
paramName[sizeof(paramName)-1] = 0;
Expand Down

0 comments on commit eeab8ec

Please sign in to comment.