aboutsummaryrefslogtreecommitdiffstats
path: root/src/input
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2010-11-08 10:37:09 +0100
committerMax Kellermann <max@duempel.org>2010-11-08 10:37:09 +0100
commitad52eb236d8746dffce0a5b07bf58a62bf0835d8 (patch)
treeb067a48045b10714e6c1315352bd9fad42202e67 /src/input
parent462bba8e2ffc46ec5c3daf4bb0c174a8d72ae1c3 (diff)
downloadmpd-ad52eb236d8746dffce0a5b07bf58a62bf0835d8.tar.gz
mpd-ad52eb236d8746dffce0a5b07bf58a62bf0835d8.tar.xz
mpd-ad52eb236d8746dffce0a5b07bf58a62bf0835d8.zip
input/rewind: fix assertion failure
The assertion added in MPD 0.15.14 was too much, it failed when the MIME type of a stream was NULL.
Diffstat (limited to 'src/input')
-rw-r--r--src/input/rewind_input_plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/rewind_input_plugin.c b/src/input/rewind_input_plugin.c
index 1927c525a..9e57e6999 100644
--- a/src/input/rewind_input_plugin.c
+++ b/src/input/rewind_input_plugin.c
@@ -84,7 +84,7 @@ copy_attributes(struct input_stream *dest)
const struct input_stream *src = &r->input;
assert(dest != src);
- assert(dest->mime != src->mime);
+ assert(src->mime == NULL || dest->mime != src->mime);
dest->ready = src->ready;
dest->seekable = src->seekable;