Skip to content
Snippets Groups Projects
Commit a1a32fdb authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/movtextdec: Make tx3g_ptr unsigned


Fixes integer overflow
Fixes: efe937780e95574250dabe07151bdc23/unknown_unknown_351_849_cov_3187578556_shellymanne.mov

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: default avatarMichael Niedermayer <michael@niedermayer.cc>
parent baeb8f5f
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,7 @@ static void mov_text_cleanup_ftab(MovTextContext *m)
static int mov_text_tx3g(AVCodecContext *avctx, MovTextContext *m)
{
char *tx3g_ptr = avctx->extradata;
uint8_t *tx3g_ptr = avctx->extradata;
int i, box_size, font_length;
int8_t v_align, h_align;
int style_fontID;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment