Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix Grooove buffer overrun
  • Loading branch information
DomClark committed Nov 1, 2019
commit 575f233405df0908d1ad79dd7bd4fe57243ba8d5
2 changes: 1 addition & 1 deletion plugins/vst_base/RemoteVstPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ void RemoteVstPlugin::getParameterDump()

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