avcodec/utils: use av_assert0() to check validity of input pointers for start code search

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-07-23 21:23:09 +02:00
parent 6a0b72f94f
commit 55db06af64
1 changed files with 1 additions and 1 deletions

View File

@ -3225,7 +3225,7 @@ const uint8_t *avpriv_find_start_code(const uint8_t *av_restrict p,
{
int i;
assert(p <= end);
av_assert0(p <= end);
if (p >= end)
return end;