mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-11 09:59:50 +00:00
probetest: check command line arguments
Fixes CID733835 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8ab0b9caba
commit
80db07adfe
@ -63,6 +63,16 @@ int main(int argc, char **argv)
|
|||||||
if(argc >= 3)
|
if(argc >= 3)
|
||||||
max_size = atoi(argv[2]);
|
max_size = atoi(argv[2]);
|
||||||
|
|
||||||
|
if (max_size > 1000000000U/8) {
|
||||||
|
fprintf(stderr, "max_size out of bounds\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (retry_count > 1000000000U) {
|
||||||
|
fprintf(stderr, "retry_count out of bounds\n");
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
avcodec_register_all();
|
avcodec_register_all();
|
||||||
av_register_all();
|
av_register_all();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user