diff options
author | Max Kellermann <max@duempel.org> | 2013-01-15 23:09:18 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-01-15 23:09:18 +0100 |
commit | ae5a721df97e351eec210533197de921a1fe747f (patch) | |
tree | de14c4d0fb7f1ee749dec8375348712ee5b2efa2 /src | |
parent | 0dd5f2915a9c01992c18f6c983c082199be7c771 (diff) | |
download | mpd-ae5a721df97e351eec210533197de921a1fe747f.tar.gz mpd-ae5a721df97e351eec210533197de921a1fe747f.tar.xz mpd-ae5a721df97e351eec210533197de921a1fe747f.zip |
Playlist: initialise attribute "playing"
Diffstat (limited to 'src')
-rw-r--r-- | src/Playlist.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Playlist.hxx b/src/Playlist.hxx index 0bb2d2e7a..46a9250a7 100644 --- a/src/Playlist.hxx +++ b/src/Playlist.hxx @@ -70,7 +70,7 @@ struct playlist { int queued; playlist(unsigned max_length) - :queue(max_length), current(-1), queued(-1) { + :queue(max_length), playing(false), current(-1), queued(-1) { } ~playlist() { |