mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
avcodec/xface: Add asserts to limit nb_words from becoming too large
Approved-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
93a5a16f13
commit
211200e0c0
@ -24,6 +24,8 @@
|
||||
* X-Face common data and utilities definition.
|
||||
*/
|
||||
|
||||
#include "libavutil/avassert.h"
|
||||
|
||||
#include "xface.h"
|
||||
|
||||
void ff_big_add(BigInt *b, uint8_t a)
|
||||
@ -43,6 +45,7 @@ void ff_big_add(BigInt *b, uint8_t a)
|
||||
c >>= XFACE_BITSPERWORD;
|
||||
}
|
||||
if (i == b->nb_words && c) {
|
||||
av_assert0(b->nb_words < XFACE_MAX_WORDS);
|
||||
b->nb_words++;
|
||||
*w = c & XFACE_WORDMASK;
|
||||
}
|
||||
@ -98,6 +101,7 @@ void ff_big_mul(BigInt *b, uint8_t a)
|
||||
return;
|
||||
if (a == 0) {
|
||||
/* treat this as a == WORDCARRY and just shift everything left a WORD */
|
||||
av_assert0(b->nb_words < XFACE_MAX_WORDS);
|
||||
i = b->nb_words++;
|
||||
w = b->words + i;
|
||||
while (i--) {
|
||||
@ -116,6 +120,7 @@ void ff_big_mul(BigInt *b, uint8_t a)
|
||||
c >>= XFACE_BITSPERWORD;
|
||||
}
|
||||
if (c) {
|
||||
av_assert0(b->nb_words < XFACE_MAX_WORDS);
|
||||
b->nb_words++;
|
||||
*w = c & XFACE_WORDMASK;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user