Commit 9aa1bcce authored by Anton Khirnov's avatar Anton Khirnov Committed by Diego Biurrun

id3v2: Use 0 instead of '\0'.

patch by Anton Khirnov, wyskas gmail com

Originally committed as revision 20005 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 787f8fad
...@@ -96,7 +96,7 @@ static void read_ttag(AVFormatContext *s, int taglen, const char *key) ...@@ -96,7 +96,7 @@ static void read_ttag(AVFormatContext *s, int taglen, const char *key)
uint8_t tmp; uint8_t tmp;
PUT_UTF8(get_byte(s->pb), tmp, *q++ = tmp;) PUT_UTF8(get_byte(s->pb), tmp, *q++ = tmp;)
} }
*q = '\0'; *q = 0;
break; break;
case 3: /* UTF-8 */ case 3: /* UTF-8 */
......
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