From 4ab586aaf11c8333ac6a245adfb660dca73fd5cd Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 3 Dec 2013 11:16:25 +0100 Subject: Tag: use new[]/delete[] instead of g_new()/g_free() --- src/tag/Tag.cxx | 13 +++---------- src/tag/TagBuilder.cxx | 2 +- 2 files changed, 4 insertions(+), 11 deletions(-) (limited to 'src/tag') diff --git a/src/tag/Tag.cxx b/src/tag/Tag.cxx index e212c69a2..7070d39c2 100644 --- a/src/tag/Tag.cxx +++ b/src/tag/Tag.cxx @@ -25,7 +25,6 @@ #include "TagBuilder.hxx" #include "util/ASCII.hxx" -#include #include #include @@ -59,12 +58,6 @@ tag_name_parse_i(const char *name) return TAG_NUM_OF_ITEM_TYPES; } -static size_t -items_size(const Tag &tag) -{ - return tag.num_items * sizeof(TagItem *); -} - void Tag::Clear() { @@ -76,7 +69,7 @@ Tag::Clear() tag_pool_put_item(items[i]); tag_pool_lock.unlock(); - g_free(items); + delete[] items; items = nullptr; num_items = 0; } @@ -88,7 +81,7 @@ Tag::~Tag() tag_pool_put_item(items[i]); tag_pool_lock.unlock(); - g_free(items); + delete[] items; } Tag::Tag(const Tag &other) @@ -97,7 +90,7 @@ Tag::Tag(const Tag &other) num_items(other.num_items) { if (num_items > 0) { - items = (TagItem **)g_malloc(items_size(other)); + items = new TagItem *[num_items]; tag_pool_lock.lock(); for (unsigned i = 0; i < num_items; i++) diff --git a/src/tag/TagBuilder.cxx b/src/tag/TagBuilder.cxx index 5c7da2a1a..37aa08cee 100644 --- a/src/tag/TagBuilder.cxx +++ b/src/tag/TagBuilder.cxx @@ -125,7 +125,7 @@ TagBuilder::Commit(Tag &tag) object */ const unsigned n_items = items.size(); tag.num_items = n_items; - tag.items = g_new(TagItem *, n_items); + tag.items = new TagItem *[n_items]; std::copy_n(items.begin(), n_items, tag.items); items.clear(); -- cgit v1.2.3