Fix off-by-1 error in the tag parsing code.

Originally committed as revision 22945 to svn://svn.ffmpeg.org/ffmpeg/trunk
release/0.6
Jai Menon 15 years ago
parent ddecab2097
commit 037e9afd37
  1. 2
      libavformat/id3v2.c

@ -127,7 +127,7 @@ static void read_ttag(AVFormatContext *s, int taglen, const char *key)
break; break;
case 3: /* UTF-8 */ case 3: /* UTF-8 */
len = FFMIN(taglen, dstlen - 1); len = FFMIN(taglen, dstlen);
get_buffer(s->pb, dst, len); get_buffer(s->pb, dst, len);
dst[len] = 0; dst[len] = 0;
break; break;

Loading…
Cancel
Save