Fix uninitialized variable.

This commit is contained in:
Todd C. Miller
2010-02-20 15:13:11 -05:00
parent 121c547052
commit afcac08246

View File

@@ -280,7 +280,7 @@ script_execve(struct command_details *details, char *argv[], char *envp[],
sigaction_t sa; sigaction_t sa;
struct script_buf input, output; struct script_buf input, output;
int n, nready; int n, nready;
int relaysig, sv[2]; int relaysig = 0, sv[2];
fd_set *fdsr, *fdsw; fd_set *fdsr, *fdsw;
int rbac_enabled = 0; int rbac_enabled = 0;
int maxfd; int maxfd;
@@ -712,7 +712,7 @@ script_child(const char *path, char *argv[], char *envp[], int backchannel, int
if (n != sizeof(cstat)) if (n != sizeof(cstat))
break; /* XXX - error, kill child and exit */ break; /* XXX - error, kill child and exit */
#ifdef SCRIPT_DEBUG #ifdef SCRIPT_DEBUG
warningx("sent signo to parent"); warningx("sent wait status to parent");
#endif #endif
if (!WIFSTOPPED(status)) { if (!WIFSTOPPED(status)) {
/* XXX */ /* XXX */