mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-25 00:32:31 +00:00
lavc/avpacket: check NULL before using the pointer
Need to check NULL before using the pointer Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
This commit is contained in:
parent
014b0e5092
commit
00555f4b8b
@ -522,11 +522,12 @@ fail:
|
||||
|
||||
int av_packet_unpack_dictionary(const uint8_t *data, int size, AVDictionary **dict)
|
||||
{
|
||||
const uint8_t *end = data + size;
|
||||
const uint8_t *end;
|
||||
int ret = 0;
|
||||
|
||||
if (!dict || !data || !size)
|
||||
return ret;
|
||||
end = data + size;
|
||||
if (size && end[-1])
|
||||
return AVERROR_INVALIDDATA;
|
||||
while (data < end) {
|
||||
|
Loading…
Reference in New Issue
Block a user