Commit 5d8e4f6d authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/rtpenc: check av_packet_get_side_data() return, fix null ptr dereference

Fixes CID1035715
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent c5f15f40
......@@ -557,6 +557,10 @@ static int rtp_write_packet(AVFormatContext *s1, AVPacket *pkt)
const uint8_t *mb_info =
av_packet_get_side_data(pkt, AV_PKT_DATA_H263_MB_INFO,
&mb_info_size);
if (!mb_info) {
av_log(s1, AV_LOG_ERROR, "failed to allocate side data\n");
return AVERROR(ENOMEM);
}
ff_rtp_send_h263_rfc2190(s1, pkt->data, size, mb_info, mb_info_size);
break;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment