diff options
author | Max Kellermann <max@duempel.org> | 2013-11-08 11:50:23 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-11-08 11:58:23 +0100 |
commit | 1904e504be70f16902009509581daa25c70fcaf1 (patch) | |
tree | f2214432a7e8e8af2f287b651053f0c04006d7c1 | |
parent | 834715ea2fbaf155f640bd4f74c4fe44c7ccb6b9 (diff) |
DecoderInternal: don't wake up player in need_chunks
Nothing of interest happens here. No need to wake up the player.
-rw-r--r-- | src/DecoderInternal.cxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/DecoderInternal.cxx b/src/DecoderInternal.cxx index e18fd2b6a..783150c08 100644 --- a/src/DecoderInternal.cxx +++ b/src/DecoderInternal.cxx @@ -50,7 +50,6 @@ need_chunks(DecoderControl &dc, bool do_wait) if (do_wait) { dc.Wait(); - dc.client_cond.signal(); return dc.command; } |