db/DatabaseSong: DatabaseDetachSong(uri) returns instance, not pointer

This commit is contained in:
Max Kellermann
2017-02-08 09:58:20 +01:00
parent 7225e919fc
commit d184231169
4 changed files with 10 additions and 10 deletions

View File

@@ -37,12 +37,12 @@ DatabaseDetachSong(const Storage &storage, const LightSong &song);
/**
* Look up a song in the database and convert it to a #DetachedSong
* instance. The caller is responsible for freeing it.
* instance.
*
* @return nullptr on error
* Throws std::runtime_error on error.
*/
gcc_malloc gcc_nonnull_all
DetachedSong *
gcc_pure
DetachedSong
DatabaseDetachSong(const Database &db, const Storage &storage,
const char *uri);