diff --git a/ffmpeg.c b/ffmpeg.c index 914bc6adb414293403f6e6e98f33720a6231eb6f..3d6853fb627e5a35b4665d9ffbf2482f593a66ec 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -1217,10 +1217,11 @@ static void term_init(void) #if HAVE_TERMIOS_H if(!run_as_daemon){ struct termios tty; + int istty = 1; #if HAVE_ISATTY - if(isatty(0) && isatty(2)) + istty = isatty(0) && isatty(2); #endif - if (tcgetattr (0, &tty) == 0) { + if (istty && tcgetattr (0, &tty) == 0) { oldtty = tty; restore_tty = 1; atexit(term_exit);