diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | src/input/plugins/CurlInputPlugin.cxx | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -1,5 +1,6 @@ ver 0.19.10 (not yet released) * input + - curl: fix deadlock on small responses - smbclient: fix DFF playback * encoder - opus: fix bogus granulepos diff --git a/src/input/plugins/CurlInputPlugin.cxx b/src/input/plugins/CurlInputPlugin.cxx index abb7e312c..3aa3b0018 100644 --- a/src/input/plugins/CurlInputPlugin.cxx +++ b/src/input/plugins/CurlInputPlugin.cxx @@ -453,6 +453,8 @@ CurlInputStream::RequestDone(CURLcode result, long status) SeekDone(); else if (!IsReady()) SetReady(); + else + cond.broadcast(); } static void |