From eee10ad2ed14bac7675147bac79c3ba9a2b6d582 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 26 Dec 2017 20:00:18 +0100 Subject: [PATCH] input/curl: add missing mutex locks to OnEnd(), OnError() --- src/input/plugins/CurlInputPlugin.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/input/plugins/CurlInputPlugin.cxx b/src/input/plugins/CurlInputPlugin.cxx index 5cc29a539..7547b97f4 100644 --- a/src/input/plugins/CurlInputPlugin.cxx +++ b/src/input/plugins/CurlInputPlugin.cxx @@ -266,6 +266,7 @@ CurlInputStream::OnData(ConstBuffer data) void CurlInputStream::OnEnd() { + const std::lock_guard protect(mutex); cond.broadcast(); AsyncInputStream::SetClosed(); @@ -274,6 +275,7 @@ CurlInputStream::OnEnd() void CurlInputStream::OnError(std::exception_ptr e) { + const std::lock_guard protect(mutex); postponed_exception = std::move(e); if (IsSeekPending())