Commit ae5a721d authored by Max Kellermann's avatar Max Kellermann

Playlist: initialise attribute "playing"

parent 0dd5f291
......@@ -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() {
......
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