diff options
author | Max Kellermann <max@duempel.org> | 2013-10-28 23:58:17 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-28 23:58:17 +0100 |
commit | 20597b3632d3b6e25ba532716106f90d5b64d0e8 (patch) | |
tree | fa6dabaff127150caf3cf4723257f15ef2c3e0f8 /src/input/DespotifyInputPlugin.cxx | |
parent | 4728735acf20fba24d0d03ab431160e250325869 (diff) | |
download | mpd-20597b3632d3b6e25ba532716106f90d5b64d0e8.tar.gz mpd-20597b3632d3b6e25ba532716106f90d5b64d0e8.tar.xz mpd-20597b3632d3b6e25ba532716106f90d5b64d0e8.zip |
*: use nullptr instead of NULL
Diffstat (limited to 'src/input/DespotifyInputPlugin.cxx')
-rw-r--r-- | src/input/DespotifyInputPlugin.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/input/DespotifyInputPlugin.cxx b/src/input/DespotifyInputPlugin.cxx index 5476b41fd..b08299516 100644 --- a/src/input/DespotifyInputPlugin.cxx +++ b/src/input/DespotifyInputPlugin.cxx @@ -131,26 +131,26 @@ input_despotify_open(const char *url, struct ds_track *track; if (!g_str_has_prefix(url, "spt://")) - return NULL; + return nullptr; session = mpd_despotify_get_session(); if (!session) - return NULL; + return nullptr; ds_link = despotify_link_from_uri(url + 6); if (!ds_link) { FormatDebug(despotify_domain, "Can't find %s", url); - return NULL; + return nullptr; } if (ds_link->type != LINK_TYPE_TRACK) { despotify_free_link(ds_link); - return NULL; + return nullptr; } track = despotify_link_get_track(session, ds_link); despotify_free_link(ds_link); if (!track) - return NULL; + return nullptr; DespotifyInputStream *ctx = new DespotifyInputStream(url, mutex, cond, @@ -158,13 +158,13 @@ input_despotify_open(const char *url, if (!mpd_despotify_register_callback(callback, ctx)) { delete ctx; - return NULL; + return nullptr; } if (despotify_play(ctx->session, ctx->track, false) == false) { mpd_despotify_unregister_callback(callback); delete ctx; - return NULL; + return nullptr; } return &ctx->base; @@ -213,7 +213,7 @@ input_despotify_tag(InputStream *is) DespotifyInputStream *ctx = (DespotifyInputStream *)is; Tag *tag = ctx->tag; - ctx->tag = NULL; + ctx->tag = nullptr; return tag; } |