Don't use the thread local buffer for callbacks

This commit is contained in:
Robbert van der Helm
2022-10-03 03:23:34 +02:00
parent 18b27d3fc4
commit a44b071264
+1 -2
View File
@@ -347,8 +347,7 @@ class ClapSockets final : public Sockets {
std::optional<std::pair<ClapLogger&, bool>> 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);
}
/**