diff options
author | Michael Niedermayer <[email protected]> | 2015-05-25 03:45:38 +0200 |
---|---|---|
committer | Michael Niedermayer <[email protected]> | 2015-07-20 04:43:39 +0200 |
commit | 63716cebb797a258c16f5207edef6f5166a18833 (patch) | |
tree | c3df7a2490b237c3226f54dc565f910821f87549 | |
parent | 665b34df730b53a2a6557899d85dba598a91f1b2 (diff) |
avcodec/put_bits: Assert that there is enough space left in skip_put_bytes()
Signed-off-by: Michael Niedermayer <[email protected]>
(cherry picked from commit 8f5ffed183e099128a732a00976f69fdc641d093)
Signed-off-by: Michael Niedermayer <[email protected]>
-rw-r--r-- | libavcodec/put_bits.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/put_bits.h b/libavcodec/put_bits.h index 82a0858942..70335e138b 100644 --- a/libavcodec/put_bits.h +++ b/libavcodec/put_bits.h @@ -229,6 +229,7 @@ static inline void skip_put_bytes(PutBitContext *s, int n) { av_assert2((put_bits_count(s) & 7) == 0); av_assert2(s->bit_left == 32); + av_assert0(n <= s->buf_end - s->buf_ptr); s->buf_ptr += n; } |