From a44b07126408d2580fb5131cf8b3b348604b4fae Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Mon, 3 Oct 2022 03:23:34 +0200 Subject: [PATCH] Don't use the thread local buffer for callbacks --- src/common/communication/clap.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/common/communication/clap.h b/src/common/communication/clap.h index a3cebced..eb05d62f 100644 --- a/src/common/communication/clap.h +++ b/src/common/communication/clap.h @@ -347,8 +347,7 @@ class ClapSockets final : public Sockets { std::optional> logging) { typename T::Response response_object; return audio_thread_sockets_.at(object.owner_instance_id) - .callback_.receive_into(object, response_object, logging, - audio_thread_buffer()); + .callback_.receive_into(object, response_object, logging); } /**