avformat/cinedec: remove redundant zero termination

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-04-05 23:00:23 +02:00
parent af2e5061bb
commit 47b03415f3
1 changed files with 0 additions and 1 deletions

View File

@ -75,7 +75,6 @@ static int set_metadata_int(AVDictionary **dict, const char *key, int value)
if (value) {
char buf[64];
snprintf(buf, sizeof(buf), "%i", value);
buf[sizeof(buf) - 1] = 0;
return av_dict_set(dict, key, buf, 0);
}
return 0;