diff options
Diffstat (limited to 'src/decoder/VorbisComments.cxx')
-rw-r--r-- | src/decoder/VorbisComments.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/decoder/VorbisComments.cxx b/src/decoder/VorbisComments.cxx index a2bec30f1..88a8dc772 100644 --- a/src/decoder/VorbisComments.cxx +++ b/src/decoder/VorbisComments.cxx @@ -20,7 +20,7 @@ #include "config.h" #include "VorbisComments.hxx" #include "XiphTags.hxx" -#include "tag.h" +#include "Tag.hxx" #include "TagTable.hxx" #include "TagHandler.hxx" #include "replay_gain_info.h" @@ -135,14 +135,14 @@ vorbis_comments_scan(char **comments, } -struct tag * +Tag * vorbis_comments_to_tag(char **comments) { - struct tag *tag = tag_new(); + Tag *tag = new Tag(); vorbis_comments_scan(comments, &add_tag_handler, tag); - if (tag_is_empty(tag)) { - tag_free(tag); + if (tag->IsEmpty()) { + delete tag; tag = NULL; } |