1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-27 02:20:05 +00:00

Fixed uninitialised variables warning

This commit is contained in:
tpoole 2017-03-01 15:42:23 +00:00
parent a2ee6339e1
commit 9caa91b166

View file

@ -1115,9 +1115,9 @@ public:
// set buffer pointers to minimize copying
{
int chIdx = 0, numChannels;
bool interleaved;
AudioBufferList* buffer;
int chIdx = 0, numChannels = 0;
bool interleaved = false;
AudioBufferList* buffer = nullptr;
// use output pointers
for (int busIdx = 0; busIdx < numOutputBuses; ++busIdx)