Commit 210afae0 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/utils: Check size argument in ff_add_index_entry()

Fixes infinite loop
Fixes Ticket3061
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e7811e48
......@@ -1627,6 +1627,9 @@ int ff_add_index_entry(AVIndexEntry **index_entries,
if(timestamp == AV_NOPTS_VALUE)
return AVERROR(EINVAL);
if (size < 0 || size > 0x3FFFFFFF)
return AVERROR(EINVAL);
if (is_relative(timestamp)) //FIXME this maintains previous behavior but we should shift by the correct offset once known
timestamp -= RELATIVE_TS_BASE;
......
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