mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-22 15:20:15 +02:00
fixed an "uninitialized use" warning in VSTEffect.cpp
This commit is contained in:
parent
430e91d834
commit
6fbfcda1e0
@ -3464,8 +3464,8 @@ void VSTEffect::SaveFXB(const wxFileName & fn)
|
||||
|
||||
wxMemoryBuffer buf;
|
||||
wxInt32 subType;
|
||||
void *chunkPtr;
|
||||
int chunkSize;
|
||||
void *chunkPtr = nullptr;
|
||||
int chunkSize = 0;
|
||||
int dataSize = 148;
|
||||
wxInt32 tab[8];
|
||||
int curProg = 0 ; //mProgram->GetCurrentSelection();
|
||||
|
Loading…
x
Reference in New Issue
Block a user