summaryrefslogtreecommitdiff
path: root/libavformat/id3v2.c
diff options
context:
space:
mode:
authorJai Menon <jmenon86@gmail.com>2010-04-22 12:54:50 +0000
committerJai Menon <jmenon86@gmail.com>2010-04-22 12:54:50 +0000
commit037e9afd37e11bec8ac3bef5f0688c18edf022f5 (patch)
treec5ac1779cf465e7581746b92b7fe15a698a4f7b0 /libavformat/id3v2.c
parentddecab2097e7c38eb0ef1a1cbd0f6465e8dbd1c3 (diff)
Fix off-by-1 error in the tag parsing code.
Originally committed as revision 22945 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/id3v2.c')
-rw-r--r--libavformat/id3v2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c
index f007a3c5d7..89c0e63adf 100644
--- a/libavformat/id3v2.c
+++ b/libavformat/id3v2.c
@@ -127,7 +127,7 @@ static void read_ttag(AVFormatContext *s, int taglen, const char *key)
break;
case 3: /* UTF-8 */
- len = FFMIN(taglen, dstlen - 1);
+ len = FFMIN(taglen, dstlen);
get_buffer(s->pb, dst, len);
dst[len] = 0;
break;