diff options
author | Max Kellermann <max@duempel.org> | 2013-01-28 23:41:45 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-28 23:41:45 +0100 |
commit | 76417d44464248949e7843eee0d5338a8e0a22ac (patch) | |
tree | c8f6416505b7268ce4f3902660ba35f4e35d1c04 /src/DecoderThread.cxx | |
parent | cffc78ad6a978c8ef0afae4fbdd4b189612a7167 (diff) | |
download | mpd-76417d44464248949e7843eee0d5338a8e0a22ac.tar.gz mpd-76417d44464248949e7843eee0d5338a8e0a22ac.tar.xz mpd-76417d44464248949e7843eee0d5338a8e0a22ac.zip |
InputStream: use std::string
Diffstat (limited to 'src/DecoderThread.cxx')
-rw-r--r-- | src/DecoderThread.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/DecoderThread.cxx b/src/DecoderThread.cxx index 67054cbc9..ac89b54ca 100644 --- a/src/DecoderThread.cxx +++ b/src/DecoderThread.cxx @@ -202,10 +202,11 @@ decoder_run_stream_mime_type(struct decoder *decoder, struct input_stream *is, const struct decoder_plugin *plugin; unsigned int next = 0; - if (is->mime == NULL) + if (is->mime.empty()) return false; - while ((plugin = decoder_plugin_from_mime_type(is->mime, next++))) { + while ((plugin = decoder_plugin_from_mime_type(is->mime.c_str(), + next++))) { if (plugin->stream_decode == NULL) continue; |