playlist/Plugin: pass InputStreamPtr&& to open_stream()

Obsolete class CloseSongEnumerator, which was a kludge.
This commit is contained in:
Max Kellermann
2016-02-21 12:53:47 +01:00
parent cadc67ea40
commit 0705f42cf8
18 changed files with 97 additions and 157 deletions

View File

@@ -98,7 +98,7 @@ try {
/* open the playlist */
playlist = playlist_list_open_stream(*is, uri);
playlist = playlist_list_open_stream(std::move(is), uri);
if (playlist == NULL) {
fprintf(stderr, "Failed to open playlist\n");
return 2;