aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/mp3_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-28 20:43:17 +0100
committerMax Kellermann <max@duempel.org>2008-10-28 20:43:17 +0100
commit898978a67dd168a234bf7a8c48a3c30562ba2f3c (patch)
tree67710dff6aa44276c637196ba5d783e33f505414 /src/decoder/mp3_plugin.c
parent28b47725ffed5aa1ecb7812abda65d84275cb50d (diff)
downloadmpd-898978a67dd168a234bf7a8c48a3c30562ba2f3c.tar.gz
mpd-898978a67dd168a234bf7a8c48a3c30562ba2f3c.tar.xz
mpd-898978a67dd168a234bf7a8c48a3c30562ba2f3c.zip
mp3: no "goto"
http://xkcd.com/292/
Diffstat (limited to 'src/decoder/mp3_plugin.c')
-rw-r--r--src/decoder/mp3_plugin.c55
1 files changed, 36 insertions, 19 deletions
diff --git a/src/decoder/mp3_plugin.c b/src/decoder/mp3_plugin.c
index ee1d9f2bd..cb7a64352 100644
--- a/src/decoder/mp3_plugin.c
+++ b/src/decoder/mp3_plugin.c
@@ -282,15 +282,18 @@ static void mp3_parse_id3(struct mp3_data *data, size_t tagsize,
if (count != tagsize) {
DEBUG("mp3_decode: error parsing ID3 tag\n");
- goto fail;
+ g_free(allocated);
+ return;
}
id3_data = allocated;
}
id3_tag = id3_tag_parse(id3_data, tagsize);
- if (id3_tag == NULL)
- goto fail;
+ if (id3_tag == NULL) {
+ g_free(allocated);
+ return;
+ }
if (mpd_tag) {
struct tag *tmp_tag = tag_id3_import(id3_tag);
@@ -311,7 +314,7 @@ static void mp3_parse_id3(struct mp3_data *data, size_t tagsize,
}
id3_tag_delete(id3_tag);
-fail:
+
g_free(allocated);
}
#endif
@@ -472,49 +475,65 @@ parse_xing(struct xing *xing, struct mad_bitptr *ptr, int *oldbitlen)
bitlen = *oldbitlen;
- if (bitlen < 16) goto fail;
+ if (bitlen < 16)
+ return false;
+
bits = mad_bit_read(ptr, 16);
bitlen -= 16;
if (bits == XI_MAGIC) {
- if (bitlen < 16) goto fail;
- if (mad_bit_read(ptr, 16) != NG_MAGIC) goto fail;
+ if (bitlen < 16)
+ return false;
+
+ if (mad_bit_read(ptr, 16) != NG_MAGIC)
+ return false;
+
bitlen -= 16;
xing->magic = XING_MAGIC_XING;
} else if (bits == IN_MAGIC) {
- if (bitlen < 16) goto fail;
- if (mad_bit_read(ptr, 16) != FO_MAGIC) goto fail;
+ if (bitlen < 16)
+ return false;
+
+ if (mad_bit_read(ptr, 16) != FO_MAGIC)
+ return false;
+
bitlen -= 16;
xing->magic = XING_MAGIC_INFO;
}
else if (bits == NG_MAGIC) xing->magic = XING_MAGIC_XING;
else if (bits == FO_MAGIC) xing->magic = XING_MAGIC_INFO;
- else goto fail;
+ else
+ return false;
- if (bitlen < 32) goto fail;
+ if (bitlen < 32)
+ return false;
xing->flags = mad_bit_read(ptr, 32);
bitlen -= 32;
if (xing->flags & XING_FRAMES) {
- if (bitlen < 32) goto fail;
+ if (bitlen < 32)
+ return false;
xing->frames = mad_bit_read(ptr, 32);
bitlen -= 32;
}
if (xing->flags & XING_BYTES) {
- if (bitlen < 32) goto fail;
+ if (bitlen < 32)
+ return false;
xing->bytes = mad_bit_read(ptr, 32);
bitlen -= 32;
}
if (xing->flags & XING_TOC) {
- if (bitlen < 800) goto fail;
+ if (bitlen < 800)
+ return false;
for (i = 0; i < 100; ++i) xing->toc[i] = mad_bit_read(ptr, 8);
bitlen -= 800;
}
if (xing->flags & XING_SCALE) {
- if (bitlen < 32) goto fail;
+ if (bitlen < 32)
+ return false;
xing->scale = mad_bit_read(ptr, 32);
bitlen -= 32;
}
@@ -522,7 +541,8 @@ parse_xing(struct xing *xing, struct mad_bitptr *ptr, int *oldbitlen)
/* Make sure we consume no less than 120 bytes (960 bits) in hopes that
* the LAME tag is found there, and not right after the Xing header */
bitsleft = 960 - ((*oldbitlen) - bitlen);
- if (bitsleft < 0) goto fail;
+ if (bitsleft < 0)
+ return false;
else if (bitsleft > 0) {
mad_bit_read(ptr, bitsleft);
bitlen -= bitsleft;
@@ -531,9 +551,6 @@ parse_xing(struct xing *xing, struct mad_bitptr *ptr, int *oldbitlen)
*oldbitlen = bitlen;
return true;
-fail:
- xing->flags = 0;
- return false;
}
static bool