From: Andre Noll Date: Sat, 29 Mar 2014 12:48:40 +0000 (+0100) Subject: gui: Initialize command_fds to -1. X-Git-Tag: v0.5.3~12^2~49 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=d88fecbec04b03e831e9dd8dfe488898bbeeb394;ds=sidebyside gui: Initialize command_fds to -1. We check at various locations whether the two members of the command_fds array are negative to tell if an external command or a display command is currently running. At startup, there is no such command, hence the two integers of the array should be initialized to a negative value. --- diff --git a/gui.c b/gui.c index aff2b1af..4246eb11 100644 --- a/gui.c +++ b/gui.c @@ -56,7 +56,7 @@ static unsigned scroll_position; static int curses_active; static pid_t cmd_pid; -static int command_fds[2]; +static int command_fds[2] = {-1, -1}; static int stat_pipe = -1; static struct gui_args_info conf;