You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avformat/wavenc: Check umid length
Fixes potential out of array read Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -120,7 +120,7 @@ static void bwf_write_bext_chunk(AVFormatContext *s)
|
||||
avio_wl64(s->pb, time_reference);
|
||||
avio_wl16(s->pb, 1); // set version to 1
|
||||
|
||||
if (tmp_tag = av_dict_get(s->metadata, "umid", NULL, 0)) {
|
||||
if ((tmp_tag = av_dict_get(s->metadata, "umid", NULL, 0)) && strlen(tmp_tag->value) > 2) {
|
||||
unsigned char umidpart_str[17] = {0};
|
||||
int64_t i;
|
||||
uint64_t umidpart;
|
||||
|
Reference in New Issue
Block a user