Commit 947e9022 authored by Max Kellermann's avatar Max Kellermann

input/curl: trigger the condition variable in RequestDone()

Fixes deadlock on small responses.
parent 3436a646
ver 0.19.10 (not yet released)
* input
- curl: fix deadlock on small responses
- smbclient: fix DFF playback
* encoder
- opus: fix bogus granulepos
......
......@@ -453,6 +453,8 @@ CurlInputStream::RequestDone(CURLcode result, long status)
SeekDone();
else if (!IsReady())
SetReady();
else
cond.broadcast();
}
static void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment