aboutsummaryrefslogtreecommitdiff
path: root/src/tag_id3.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-11-15 18:44:53 +0100
committerMax Kellermann <max@duempel.org>2009-11-15 18:44:53 +0100
commitf51ba6464adf1d2324c418e106b66da525f01587 (patch)
treef171f390d6aa56637ba14f303916328a564840ef /src/tag_id3.c
parent77b95d08a55a35bc966b9a9096cd926c315d49b8 (diff)
id3: allow 4 MB RIFF/AIFF tags
Allow RIFF/AIFF ID3 tags up to 4 MB (old limit was 256 kB). This might still be too small for some users, and when somebody complains, we might do something more clever (like streaming the data into libid3tag?).
Diffstat (limited to 'src/tag_id3.c')
-rw-r--r--src/tag_id3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag_id3.c b/src/tag_id3.c
index ce0386a5..0ae37f3e 100644
--- a/src/tag_id3.c
+++ b/src/tag_id3.c
@@ -481,7 +481,7 @@ tag_id3_riff_aiff_load(FILE *file)
if (size == 0)
return NULL;
- if (size > 256 * 1024)
+ if (size > 4 * 1024 * 1024)
/* too large, don't allocate so much memory */
return NULL;