simplify usage of dstlen as it is not a parameter anymore
authorAurelien Jacobs <aurel@gnuage.org>
Mon, 2 Feb 2009 22:17:14 +0000 (22:17 +0000)
committerAurelien Jacobs <aurel@gnuage.org>
Mon, 2 Feb 2009 22:17:14 +0000 (22:17 +0000)
Originally committed as revision 16956 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/mp3.c

index ba3baf1..f81c248 100644 (file)
@@ -170,16 +170,14 @@ static unsigned int id3v2_get_size(ByteIOContext *s, int len)
 static void id3v2_read_ttag(AVFormatContext *s, int taglen, const char *key)
 {
     char *q, dst[512];
-    int len, dstlen = sizeof(dst);
+    int len, dstlen = sizeof(dst) - 1;
     unsigned genre;
 
-    if(dstlen > 0)
         dst[0]= 0;
     if(taglen < 1)
         return;
 
     taglen--; /* account for encoding type byte */
-    dstlen--; /* Leave space for zero terminator */
 
     switch(get_byte(s->pb)) { /* encoding type */