aboutsummaryrefslogtreecommitdiff
path: root/src/Partition.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/Partition.hxx')
-rw-r--r--src/Partition.hxx8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/Partition.hxx b/src/Partition.hxx
index b91a4b6f..a3b9e462 100644
--- a/src/Partition.hxx
+++ b/src/Partition.hxx
@@ -35,12 +35,8 @@ struct Partition {
Partition(unsigned max_length,
unsigned buffer_chunks,
unsigned buffered_before_play)
- :pc(buffer_chunks, buffered_before_play) {
- playlist_init(&playlist, max_length);
- }
-
- ~Partition() {
- playlist_finish(&playlist);
+ :playlist(max_length),
+ pc(buffer_chunks, buffered_before_play) {
}
};