Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
9bc0fada
Commit
9bc0fada
authored
Dec 15, 2015
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge tag 'v0.19.12'
release v0.19.12
parents
019aea3d
82e261ad
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
3 deletions
+10
-3
Makefile.am
Makefile.am
+1
-0
NEWS
NEWS
+5
-0
user.xml
doc/user.xml
+2
-1
TagString.cxx
src/tag/TagString.cxx
+1
-1
mpd.service.in
systemd/mpd.service.in
+1
-1
No files found.
Makefile.am
View file @
9bc0fada
...
...
@@ -1304,6 +1304,7 @@ liboutput_plugins_a_SOURCES = \
MIXER_LIBS
=
\
libmixer_plugins.a
\
$(ALSA_LIBS)
\
$(PULSE_LIBS2)
MIXER_API_SRC
=
\
...
...
NEWS
View file @
9bc0fada
...
...
@@ -45,6 +45,11 @@ ver 0.20 (not yet released)
* update
- 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)
* tags
- ape: fix buffer overflow
...
...
doc/user.xml
View file @
9bc0fada
...
...
@@ -2839,7 +2839,8 @@ buffer_size: 16384</programlisting>
/
<ulink
url=
"http://icecast.org/"
><application>
IceCast
</application></ulink>
.
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>
...
...
src/tag/TagString.cxx
View file @
9bc0fada
...
...
@@ -41,9 +41,9 @@ FindInvalidUTF8(const char *p, const char *const end)
/* now call the other SequenceLengthUTF8() overload
which also validates the continuations */
const
size_t
t
=
SequenceLengthUTF8
(
p
);
assert
(
s
==
t
);
if
(
t
==
0
)
return
p
;
assert
(
s
==
t
);
p
+=
s
;
}
...
...
systemd/mpd.service.in
View file @
9bc0fada
...
...
@@ -8,7 +8,7 @@ ExecStart=@prefix@/bin/mpd --no-daemon
# allow MPD to use real-time priority 50
LimitRTPRIO=50
LimitRTTIME=
-1
LimitRTTIME=
infinity
# disallow writing to /usr, /bin, /sbin, ...
ProtectSystem=yes
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment