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;
|
wxMemoryBuffer buf;
|
||||||
wxInt32 subType;
|
wxInt32 subType;
|
||||||
void *chunkPtr;
|
void *chunkPtr = nullptr;
|
||||||
int chunkSize;
|
int chunkSize = 0;
|
||||||
int dataSize = 148;
|
int dataSize = 148;
|
||||||
wxInt32 tab[8];
|
wxInt32 tab[8];
|
||||||
int curProg = 0 ; //mProgram->GetCurrentSelection();
|
int curProg = 0 ; //mProgram->GetCurrentSelection();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user