mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-14 00:58:38 +02:00
avformat/mpegtsenc: Use correct deallocation code on failure of pids array allocation
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
5f8300afc6
commit
12b59e57f3
@ -623,8 +623,8 @@ static int mpegts_write_header(AVFormatContext *s)
|
|||||||
|
|
||||||
pids = av_malloc_array(s->nb_streams, sizeof(*pids));
|
pids = av_malloc_array(s->nb_streams, sizeof(*pids));
|
||||||
if (!pids) {
|
if (!pids) {
|
||||||
av_free(service);
|
ret = AVERROR(ENOMEM);
|
||||||
return AVERROR(ENOMEM);
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* assign pids to each stream */
|
/* assign pids to each stream */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user