mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-12-12 05:35:56 +00:00
ffv1: make sure gob_count is not 0
Fixes division by 0 Fixes CID733736 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f70a651b3f
commit
670b927aa2
@ -1120,7 +1120,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
|
||||
}
|
||||
}
|
||||
gob_count= strtol(p, &next, 0);
|
||||
if(next==p || gob_count <0){
|
||||
if(next==p || gob_count <=0){
|
||||
av_log(avctx, AV_LOG_ERROR, "2Pass file invalid\n");
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user