playlist/pls: fix reversed song order

Remove the forward_list::reverse() call.  It was not necessary,
because pls_parser() already reads the playlist in reverse order.
This commit is contained in:
Max Kellermann 2013-11-05 18:22:34 +01:00
parent f4b61e8c8d
commit ae5dd2da4f
2 changed files with 2 additions and 1 deletions

2
NEWS
View File

@ -1,4 +1,6 @@
ver 0.18.2 (2013/??/??)
* playlist:
- pls: fix reversed song order
* decoder:
- dsf: enable DSD128
* fix build failures due to missing includes

View File

@ -155,7 +155,6 @@ pls_open_stream(InputStream &is)
pls_parser(keyfile, songs);
g_key_file_free(keyfile);
songs.reverse();
return new MemorySongEnumerator(std::move(songs));
}