From c294250cd9faccf514316f92636a1a78a35b514f Mon Sep 17 00:00:00 2001 From: michele papalini Date: Fri, 6 Dec 2019 11:13:11 +0100 Subject: [HICN-437] concurrency problem in rtc producer socket Signed-off-by: michele papalini Change-Id: I629914f48e00814796f16b201e03549e9c7941bd --- libtransport/src/hicn/transport/interfaces/rtc_socket_producer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libtransport/src/hicn/transport/interfaces') diff --git a/libtransport/src/hicn/transport/interfaces/rtc_socket_producer.cc b/libtransport/src/hicn/transport/interfaces/rtc_socket_producer.cc index f1057aa57..bb93e0535 100644 --- a/libtransport/src/hicn/transport/interfaces/rtc_socket_producer.cc +++ b/libtransport/src/hicn/transport/interfaces/rtc_socket_producer.cc @@ -183,8 +183,8 @@ void RTCProducerSocket::produce(std::unique_ptr &&buffer) { // remove interests from the interest cache if it exists // this generates nacks that will tell to the consumer // that a new data packet was produced + utils::SpinLock::Acquire locked(interests_cache_lock_); if (!seqs_map_.empty()) { - utils::SpinLock::Acquire locked(interests_cache_lock_); for (auto it = seqs_map_.begin(); it != seqs_map_.end(); it++) { if (it->first != old_curr) sendNack(it->first); } -- cgit 1.2.3-korg