Commit 442d2e74 authored by Max Kellermann's avatar Max Kellermann

decoder/mad: fix buffer variable name on !HAVE_ID3TAG

parent 28736414
......@@ -434,10 +434,10 @@ static void mp3_parse_id3(struct mp3_data *data, size_t tagsize,
while (count < tagsize) {
size_t len = tagsize - count;
if (len > sizeof(buffer))
len = sizeof(buffer);
char ignored[1024];
if (len > sizeof(ignored))
len = sizeof(ignored);
len = decoder_read(data->decoder, data->input_stream,
ignored, len);
if (len == 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment