mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
h264_sei: Fix infinite loop.
Fixes not yet fixed parts of CVE-2011-3946. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
fe0089a6ed
commit
9decfc17bb
@ -169,11 +169,15 @@ int ff_h264_decode_sei(H264Context *h){
|
||||
|
||||
type=0;
|
||||
do{
|
||||
if (get_bits_left(&s->gb) < 8)
|
||||
return -1;
|
||||
type+= show_bits(&s->gb, 8);
|
||||
}while(get_bits(&s->gb, 8) == 255);
|
||||
|
||||
size=0;
|
||||
do{
|
||||
if (get_bits_left(&s->gb) < 8)
|
||||
return -1;
|
||||
size+= show_bits(&s->gb, 8);
|
||||
}while(get_bits(&s->gb, 8) == 255);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user