mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
VST: fix a copy/paste typo and possible segfault
fix by Drumfix.
This commit is contained in:
parent
4512d013eb
commit
d24195c41e
1 changed files with 1 additions and 1 deletions
|
|
@ -549,7 +549,7 @@ VSTPlugin::connect_and_run (BufferSet& bufs,
|
||||||
*/
|
*/
|
||||||
|
|
||||||
float** ins = (float**)alloca(_plugin->numInputs*sizeof(float*));
|
float** ins = (float**)alloca(_plugin->numInputs*sizeof(float*));
|
||||||
float** outs = (float**)alloca(_plugin->numInputs*sizeof(float*));
|
float** outs = (float**)alloca(_plugin->numOutputs*sizeof(float*));
|
||||||
|
|
||||||
int32_t i;
|
int32_t i;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue