1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

DSP: Fixed an uninitialised memory issue in the Convolution class

This commit is contained in:
Tom Poole 2018-09-10 09:47:23 +01:00
parent 696f26dea0
commit 56022b6680

View file

@ -104,6 +104,7 @@ struct ConvolutionEngine
buffersInputSegments.clear();
buffersImpulseSegments.clear();
bufferOutput.clear();
for (size_t i = 0; i < numInputSegments; ++i)
{