avformat/utils: avformat_find_stream_info fix a crash in case of oom
fixes ticket #2767 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
0574fe76b8
commit
ccf9211e29
1 changed files with 2 additions and 0 deletions
|
|
@ -2783,6 +2783,8 @@ int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options)
|
|||
} else {
|
||||
pkt = add_to_pktbuf(&ic->packet_buffer, &pkt1,
|
||||
&ic->packet_buffer_end);
|
||||
if (!pkt)
|
||||
goto find_stream_info_err;
|
||||
if ((ret = av_dup_packet(pkt)) < 0)
|
||||
goto find_stream_info_err;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue