Commit 9bc0fada authored by Max Kellermann's avatar Max Kellermann

Merge tag 'v0.19.12'

release v0.19.12
parents 019aea3d 82e261ad
...@@ -1304,6 +1304,7 @@ liboutput_plugins_a_SOURCES = \ ...@@ -1304,6 +1304,7 @@ liboutput_plugins_a_SOURCES = \
MIXER_LIBS = \ MIXER_LIBS = \
libmixer_plugins.a \ libmixer_plugins.a \
$(ALSA_LIBS) \
$(PULSE_LIBS2) $(PULSE_LIBS2)
MIXER_API_SRC = \ MIXER_API_SRC = \
......
...@@ -45,6 +45,11 @@ ver 0.20 (not yet released) ...@@ -45,6 +45,11 @@ ver 0.20 (not yet released)
* update * update
- apply .mpdignore matches to subdirectories - apply .mpdignore matches to subdirectories
ver 0.19.12 (2015/12/15)
* fix assertion failure on malformed UTF-8 tag
* fix build failure on non-Linux systems
* fix LimitRTTIME in systemd unit file
ver 0.19.11 (2015/10/27) ver 0.19.11 (2015/10/27)
* tags * tags
- ape: fix buffer overflow - ape: fix buffer overflow
......
...@@ -2839,7 +2839,8 @@ buffer_size: 16384</programlisting> ...@@ -2839,7 +2839,8 @@ buffer_size: 16384</programlisting>
/ <ulink / <ulink
url="http://icecast.org/"><application>IceCast</application></ulink>. url="http://icecast.org/"><application>IceCast</application></ulink>.
HTTP streaming clients like HTTP streaming clients like
<application>mplayer</application> can connect to it. <application>mplayer</application>, <application>VLC</application>,
and <application>mpv</application> can connect to it.
</para> </para>
<para> <para>
......
...@@ -41,9 +41,9 @@ FindInvalidUTF8(const char *p, const char *const end) ...@@ -41,9 +41,9 @@ FindInvalidUTF8(const char *p, const char *const end)
/* now call the other SequenceLengthUTF8() overload /* now call the other SequenceLengthUTF8() overload
which also validates the continuations */ which also validates the continuations */
const size_t t = SequenceLengthUTF8(p); const size_t t = SequenceLengthUTF8(p);
assert(s == t);
if (t == 0) if (t == 0)
return p; return p;
assert(s == t);
p += s; p += s;
} }
......
...@@ -8,7 +8,7 @@ ExecStart=@prefix@/bin/mpd --no-daemon ...@@ -8,7 +8,7 @@ ExecStart=@prefix@/bin/mpd --no-daemon
# allow MPD to use real-time priority 50 # allow MPD to use real-time priority 50
LimitRTPRIO=50 LimitRTPRIO=50
LimitRTTIME=-1 LimitRTTIME=infinity
# disallow writing to /usr, /bin, /sbin, ... # disallow writing to /usr, /bin, /sbin, ...
ProtectSystem=yes ProtectSystem=yes
......
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