mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-20 01:50:30 +00:00
avformat/assdec: make sure to free allocated data in case of error
This commit is contained in:
parent
0e6bad1229
commit
71f6275169
@ -148,9 +148,6 @@ static int ass_read_header(AVFormatContext *s)
|
|||||||
sub->duration = duration;
|
sub->duration = duration;
|
||||||
}
|
}
|
||||||
|
|
||||||
av_bprint_finalize(&line, NULL);
|
|
||||||
av_bprint_finalize(&rline, NULL);
|
|
||||||
|
|
||||||
res = avpriv_bprint_to_extradata(st->codec, &header);
|
res = avpriv_bprint_to_extradata(st->codec, &header);
|
||||||
if (res < 0)
|
if (res < 0)
|
||||||
goto end;
|
goto end;
|
||||||
@ -158,6 +155,9 @@ static int ass_read_header(AVFormatContext *s)
|
|||||||
ff_subtitles_queue_finalize(&ass->q);
|
ff_subtitles_queue_finalize(&ass->q);
|
||||||
|
|
||||||
end:
|
end:
|
||||||
|
av_bprint_finalize(&header, NULL);
|
||||||
|
av_bprint_finalize(&line, NULL);
|
||||||
|
av_bprint_finalize(&rline, NULL);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user