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

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/37/head
Michael Niedermayer 12 years ago
parent 6a0b72f94f
commit 55db06af64
  1. 2
      libavcodec/utils.c

@ -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;

Loading…
Cancel
Save