mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
Merge remote-tracking branch 'qatar/master'
* qatar/master:
rtpdec_h264: Check the return value of functions doing allocations
See: c5f15f40b9
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
12e8104120
@ -248,7 +248,8 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data,
|
||||
if (pass == 0) {
|
||||
/* now we know the total size of the packet (with the
|
||||
* start sequences added) */
|
||||
av_new_packet(pkt, total_length);
|
||||
if ((result = av_new_packet(pkt, total_length)) < 0)
|
||||
return result;
|
||||
dst = pkt->data;
|
||||
} else {
|
||||
assert(dst - pkt->data == total_length);
|
||||
|
Loading…
Reference in New Issue
Block a user