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

AudioProcessorGraph: Add missing callback lock

This commit is contained in:
reuk 2025-03-31 13:23:19 +01:00
parent 43b9dc4905
commit e30670a69a
No known key found for this signature in database

View file

@ -919,6 +919,7 @@ private:
void processWithBuffer (const GlobalIO&, bool bypass, AudioBuffer<FloatType>& audio, MidiBuffer& midi) final
{
const ScopedLock lock { this->processor.getCallbackLock() };
callProcess (bypass, audio, midi);
}