avformat/rtpdec_xiph: Move pkt_len onto one side of the check
This is more correct Fixes CID1271793 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
aa5169935e
commit
a23379a0a6
@ -73,7 +73,7 @@ static int xiph_handle_packet(AVFormatContext *ctx, PayloadContext *data,
|
|||||||
}
|
}
|
||||||
pkt_len = AV_RB16(data->split_buf + data->split_pos);
|
pkt_len = AV_RB16(data->split_buf + data->split_pos);
|
||||||
data->split_pos += 2;
|
data->split_pos += 2;
|
||||||
if (data->split_pos + pkt_len > data->split_buf_len) {
|
if (pkt_len > data->split_buf_len - data->split_pos) {
|
||||||
av_log(ctx, AV_LOG_ERROR, "Not enough data to return\n");
|
av_log(ctx, AV_LOG_ERROR, "Not enough data to return\n");
|
||||||
return AVERROR_INVALIDDATA;
|
return AVERROR_INVALIDDATA;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user