mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/oggparsevorbis: remove non functional null check
Fixes CID1197055 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
419800acc4
commit
b978391ed5
|
@ -157,7 +157,7 @@ int ff_vorbis_comment(AVFormatContext *as, AVDictionary **m,
|
|||
continue;
|
||||
}
|
||||
} else if (!ogm_chapter(as, tt, ct)) {
|
||||
if (m && av_dict_get(*m, tt, NULL, 0)) {
|
||||
if (av_dict_get(*m, tt, NULL, 0)) {
|
||||
av_dict_set(m, tt, ";", AV_DICT_APPEND);
|
||||
}
|
||||
av_dict_set(m, tt, ct,
|
||||
|
|
Loading…
Reference in New Issue