aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2008-09-04 01:28:43 -0700
committerEric Wong <normalperson@yhbt.net>2008-09-05 00:00:08 -0700
commit6e8200227f617b7604a01f372460661d8ec5da32 (patch)
treef7214da1e5a0de24941b81b56d200561dc528ec8 /src/tag.c
parent3f29cbaf360c5e9542c7b9e6648626d6e0ea8b1e (diff)
downloadmpd-6e8200227f617b7604a01f372460661d8ec5da32.tar.gz
mpd-6e8200227f617b7604a01f372460661d8ec5da32.tar.xz
mpd-6e8200227f617b7604a01f372460661d8ec5da32.zip
tag: introduce handy items_size() function
Trying to read or remember "tag->numOfItems * sizeof(*tag->items)" requires too much thinking and mental effort on my part. Also, favor "sizeof(struct mpd_tag)" over "sizeof(*tag->items)" because the former is easier to read and follow, even though the latter is easier to modify if the items member changes to a different type.
Diffstat (limited to '')
-rw-r--r--src/tag.c23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/tag.c b/src/tag.c
index 0e0ff1ab7..dc2bab2d6 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -55,6 +55,11 @@ const char *mpdTagItemKeys[TAG_NUM_OF_ITEM_TYPES] = {
static mpd_sint8 ignoreTagItems[TAG_NUM_OF_ITEM_TYPES];
+static size_t items_size(const struct mpd_tag *tag)
+{
+ return (tag->numOfItems * sizeof(struct tag_item));
+}
+
void tag_lib_init(void)
{
int quit = 0;
@@ -271,8 +276,7 @@ static void deleteItem(struct mpd_tag *tag, int idx)
}
if (tag->numOfItems > 0) {
- tag->items = xrealloc(tag->items,
- tag->numOfItems * sizeof(*tag->items));
+ tag->items = xrealloc(tag->items, items_size(tag));
} else {
free(tag->items);
tag->items = NULL;
@@ -334,7 +338,7 @@ struct mpd_tag *tag_dup(const struct mpd_tag *tag)
ret = tag_new();
ret->time = tag->time;
ret->numOfItems = tag->numOfItems;
- ret->items = xmalloc(ret->numOfItems * sizeof(ret->items[0]));
+ ret->items = ret->numOfItems > 0 ? xmalloc(items_size(tag)) : NULL;
for (i = 0; i < tag->numOfItems; i++) {
ret->items[i] = tag_pool_dup_item(tag->items[i]);
@@ -404,10 +408,8 @@ void tag_end_add(struct mpd_tag *tag)
if (tag->numOfItems > 0) {
/* copy the tag items from the bulk list over
to a new list (which fits exactly) */
- tag->items = xmalloc(tag->numOfItems *
- sizeof(tag->items[0]));
- memcpy(tag->items, bulk.items,
- tag->numOfItems * sizeof(tag->items[0]));
+ tag->items = xmalloc(items_size(tag));
+ memcpy(tag->items, bulk.items, items_size(tag));
} else
tag->items = NULL;
}
@@ -439,15 +441,14 @@ static void appendToTagItems(struct mpd_tag *tag, enum tag_type type,
if (tag->items != bulk.items)
/* bulk mode disabled */
- tag->items = xrealloc(tag->items,
- tag->numOfItems * sizeof(*tag->items));
+ tag->items = xrealloc(tag->items, items_size(tag));
else if (tag->numOfItems >= BULK_MAX) {
/* bulk list already full - switch back to non-bulk */
assert(bulk.busy);
- tag->items = xmalloc(tag->numOfItems * sizeof(tag->items[0]));
+ tag->items = xmalloc(items_size(tag));
memcpy(tag->items, bulk.items,
- (tag->numOfItems - 1) * sizeof(tag->items[0]));
+ items_size(tag) - sizeof(struct tag_item));
}
tag->items[i] = tag_pool_get_item(type, p, len);