diff options
author | Max Kellermann <max@duempel.org> | 2014-01-19 19:57:27 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-19 23:16:09 +0100 |
commit | 64465c1318e227ca625ee2047ec8b6a8f0c2faff (patch) | |
tree | cebe7785a4c50b698e29597eb28c70bcca5864ce /src/UpdateSong.cxx | |
parent | a506adea41e21e071ac3e88d69824d6dd3a3c925 (diff) | |
download | mpd-64465c1318e227ca625ee2047ec8b6a8f0c2faff.tar.gz mpd-64465c1318e227ca625ee2047ec8b6a8f0c2faff.tar.xz mpd-64465c1318e227ca625ee2047ec8b6a8f0c2faff.zip |
Song: make the "parent" attribute mandatory
The Song class is only used for database songs now. A Song without a
Directory is not possible anymore.
Diffstat (limited to 'src/UpdateSong.cxx')
-rw-r--r-- | src/UpdateSong.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/UpdateSong.cxx b/src/UpdateSong.cxx index d07948eed..592298f49 100644 --- a/src/UpdateSong.cxx +++ b/src/UpdateSong.cxx @@ -69,7 +69,7 @@ update_song_file2(Directory &directory, if (song == nullptr) { FormatDebug(update_domain, "reading %s/%s", directory.GetPath(), name); - song = Song::LoadFile(name, &directory); + song = Song::LoadFile(name, directory); if (song == nullptr) { FormatDebug(update_domain, "ignoring unrecognized file %s/%s", |