aboutsummaryrefslogtreecommitdiff
path: root/src/Playlist.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-15 23:09:18 +0100
committerMax Kellermann <max@duempel.org>2013-01-15 23:09:18 +0100
commitae5a721df97e351eec210533197de921a1fe747f (patch)
treede14c4d0fb7f1ee749dec8375348712ee5b2efa2 /src/Playlist.hxx
parent0dd5f2915a9c01992c18f6c983c082199be7c771 (diff)
Playlist: initialise attribute "playing"
Diffstat (limited to 'src/Playlist.hxx')
-rw-r--r--src/Playlist.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Playlist.hxx b/src/Playlist.hxx
index 0bb2d2e7..46a9250a 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() {