aboutsummaryrefslogtreecommitdiffstats
path: root/src/playlist
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-10-21 10:53:31 +0200
committerMax Kellermann <max@duempel.org>2013-10-21 10:53:31 +0200
commit86f08862e4248ae264149fe03b167dfbbba7d548 (patch)
treec7babe836328b557a0969ce2de6f9fada4a4226f /src/playlist
parent83c726a34f325ae5be0d5b61b66a97cb41f6973e (diff)
downloadmpd-86f08862e4248ae264149fe03b167dfbbba7d548.tar.gz
mpd-86f08862e4248ae264149fe03b167dfbbba7d548.tar.xz
mpd-86f08862e4248ae264149fe03b167dfbbba7d548.zip
playlist/EmbeddedCue: use std::string for the "cuesheet" attribute
Diffstat (limited to 'src/playlist')
-rw-r--r--src/playlist/EmbeddedCuePlaylistPlugin.cxx18
1 files changed, 8 insertions, 10 deletions
diff --git a/src/playlist/EmbeddedCuePlaylistPlugin.cxx b/src/playlist/EmbeddedCuePlaylistPlugin.cxx
index 51491b38a..ba2bad7f7 100644
--- a/src/playlist/EmbeddedCuePlaylistPlugin.cxx
+++ b/src/playlist/EmbeddedCuePlaylistPlugin.cxx
@@ -37,7 +37,6 @@
#include "fs/Traits.hxx"
#include "util/ASCII.hxx"
-#include <glib.h>
#include <assert.h>
#include <string.h>
@@ -53,7 +52,7 @@ public:
/**
* The value of the file's "CUESHEET" tag.
*/
- char *cuesheet;
+ std::string cuesheet;
/**
* The offset of the next line within "cuesheet".
@@ -64,12 +63,11 @@ public:
public:
EmbeddedCuePlaylist()
- :cuesheet(nullptr), parser(nullptr) {
+ :parser(nullptr) {
}
virtual ~EmbeddedCuePlaylist() {
delete parser;
- g_free(cuesheet);
}
virtual Song *NextSong() override;
@@ -80,9 +78,9 @@ embcue_tag_pair(const char *name, const char *value, void *ctx)
{
EmbeddedCuePlaylist *playlist = (EmbeddedCuePlaylist *)ctx;
- if (playlist->cuesheet == NULL &&
+ if (playlist->cuesheet.empty() &&
StringEqualsCaseASCII(name, "cuesheet"))
- playlist->cuesheet = g_strdup(value);
+ playlist->cuesheet = value;
}
static const struct tag_handler embcue_tag_handler = {
@@ -103,13 +101,13 @@ embcue_playlist_open_uri(const char *uri,
const auto playlist = new EmbeddedCuePlaylist();
tag_file_scan(uri, &embcue_tag_handler, playlist);
- if (playlist->cuesheet == NULL) {
+ if (playlist->cuesheet.empty()) {
tag_ape_scan2(uri, &embcue_tag_handler, playlist);
- if (playlist->cuesheet == NULL)
+ if (playlist->cuesheet.empty())
tag_id3_scan(uri, &embcue_tag_handler, playlist);
}
- if (playlist->cuesheet == NULL) {
+ if (playlist->cuesheet.empty()) {
/* no "CUESHEET" tag found */
delete playlist;
return NULL;
@@ -117,7 +115,7 @@ embcue_playlist_open_uri(const char *uri,
playlist->filename = PathTraits::GetBaseUTF8(uri);
- playlist->next = playlist->cuesheet;
+ playlist->next = &playlist->cuesheet[0];
playlist->parser = new CueParser();
return playlist;