aboutsummaryrefslogtreecommitdiffstats
path: root/src/DecoderInternal.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-11-06 23:18:55 +0100
committerMax Kellermann <max@duempel.org>2013-11-06 23:51:17 +0100
commit9802e74859219ae151cddb238f71016e3a2ef1ef (patch)
treef1dcd4d13323a4806fd153c3a7a391a994dbede2 /src/DecoderInternal.cxx
parent8e7d6eb1518f87926b6d1c34b9ca48e4b5836198 (diff)
downloadmpd-9802e74859219ae151cddb238f71016e3a2ef1ef.tar.gz
mpd-9802e74859219ae151cddb238f71016e3a2ef1ef.tar.xz
mpd-9802e74859219ae151cddb238f71016e3a2ef1ef.zip
DecoderInternal: lock DecoderControl in _flush_chunk()
Must hold the Mutex to signal the Cond object safely.
Diffstat (limited to 'src/DecoderInternal.cxx')
-rw-r--r--src/DecoderInternal.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/DecoderInternal.cxx b/src/DecoderInternal.cxx
index 25d9c3f05..7cca5dbe3 100644
--- a/src/DecoderInternal.cxx
+++ b/src/DecoderInternal.cxx
@@ -101,5 +101,7 @@ decoder_flush_chunk(Decoder &decoder)
decoder.chunk = nullptr;
+ dc.Lock();
dc.client_cond.signal();
+ dc.Unlock();
}