commit | 744b064a341523d14fe20599977488ca45880315 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Fri Jan 05 21:23:44 2001 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Fri Jan 05 21:23:44 2001 +0000 |
tree | 6e9fd04294c39ac33b362dfea576e5f98f4c4e49 | |
parent | 59d31b68c3cf0feadd3630b7b547649d3756caf2 [diff] [blame] |
Needs to be NULL at init in all cases.
diff --git a/shell/lash.c b/shell/lash.c index 36e8aa5..98d6b65 100644 --- a/shell/lash.c +++ b/shell/lash.c
@@ -203,7 +203,7 @@ /* Globals that are static to this file */ static char *cwd; -static char *local_pending_command; +static char *local_pending_command = NULL; static struct jobset job_list = { NULL, NULL }; static int argc; static char **argv;