mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
img2dec: check return value of av_new_packet()
Fixes CID703626. Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
011f3892ff
commit
3f8148911c
@ -375,7 +375,8 @@ static int read_packet(AVFormatContext *s1, AVPacket *pkt)
|
||||
size[0]= 4096;
|
||||
}
|
||||
|
||||
av_new_packet(pkt, size[0] + size[1] + size[2]);
|
||||
if (av_new_packet(pkt, size[0] + size[1] + size[2]) < 0)
|
||||
return AVERROR(ENOMEM);
|
||||
pkt->stream_index = 0;
|
||||
pkt->flags |= AV_PKT_FLAG_KEY;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user