From ec3c9a30203b1313683a473b3fa0fe9ceab57421 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 11 Nov 2011 04:05:25 +0100 Subject: ffmpeg: check debug scanf() return value. Signed-off-by: Michael Niedermayer --- ffmpeg.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ffmpeg.c') diff --git a/ffmpeg.c b/ffmpeg.c index 8896b0ceee..6af3619b2f 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -2575,7 +2575,8 @@ static int transcode(OutputFile *output_files, int nb_output_files, while(debug & (FF_DEBUG_DCT_COEFF|FF_DEBUG_VIS_QP|FF_DEBUG_VIS_MB_TYPE)) //unsupported, would just crash debug += debug; }else - scanf("%d", &debug); + if(scanf("%d", &debug)!=1) + fprintf(stderr,"error parsing debug value\n"); for(i=0;icodec->debug = debug; } -- cgit v1.2.3