1
0
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:
andheh 2018-03-22 09:21:13 +01:00 committed by James Crook
parent 430e91d834
commit 6fbfcda1e0

View File

@ -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();