diff options
Diffstat (limited to 'src/PlaylistFile.cxx')
-rw-r--r-- | src/PlaylistFile.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PlaylistFile.cxx b/src/PlaylistFile.cxx index 34f04df77..5e869d9db 100644 --- a/src/PlaylistFile.cxx +++ b/src/PlaylistFile.cxx @@ -84,13 +84,13 @@ spl_valid_name(const char *name_utf8) static const char * spl_map(GError **error_r) { - const char *path_fs = map_spl_path(); - if (path_fs == NULL) + const Path &path_fs = map_spl_path(); + if (path_fs.IsNull()) g_set_error_literal(error_r, playlist_quark(), PLAYLIST_RESULT_DISABLED, "Stored playlists are disabled"); - return path_fs; + return path_fs.c_str(); } static bool |