From ae5a721df97e351eec210533197de921a1fe747f Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 15 Jan 2013 23:09:18 +0100 Subject: Playlist: initialise attribute "playing" --- src/Playlist.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Playlist.hxx') 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() { -- cgit v1.2.3