Fix for errors that occur before initializing the terminal.
This commit is contained in:
parent
66d20ba811
commit
2086cc6598
8
bb.c
8
bb.c
@ -147,9 +147,11 @@ void cleanup(void)
|
||||
free(cmdfilename);
|
||||
cmdfilename = NULL;
|
||||
}
|
||||
fputs(T_OFF(T_ALT_SCREEN) T_ON(T_SHOW_CURSOR), tty_out);
|
||||
fflush(tty_out);
|
||||
tcsetattr(fileno(tty_out), TCSANOW, &orig_termios);
|
||||
if (tty_out) {
|
||||
fputs(T_OFF(T_ALT_SCREEN) T_ON(T_SHOW_CURSOR), tty_out);
|
||||
fflush(tty_out);
|
||||
tcsetattr(fileno(tty_out), TCSANOW, &orig_termios);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user