20 lines
506 B
Plaintext
20 lines
506 B
Plaintext
--- src/cmd/ksh93/sh/jobs.c
|
|
+++ src/cmd/ksh93/sh/jobs.c 2011-08-15 18:43:23.005726321 +0200
|
|
@@ -1103,7 +1103,7 @@ static struct process *job_bystring(regi
|
|
|
|
int job_kill(register struct process *pw,register int sig)
|
|
{
|
|
- Shell_t *shp = pw->p_shp;
|
|
+ Shell_t *shp;
|
|
register pid_t pid;
|
|
register int r;
|
|
const char *msg;
|
|
@@ -1116,6 +1116,7 @@ int job_kill(register struct process *pw
|
|
errno = ECHILD;
|
|
if(pw==0)
|
|
goto error;
|
|
+ shp = pw->p_shp;
|
|
pid = pw->p_pid;
|
|
#if SHOPT_COSHELL
|
|
if(pw->p_cojob)
|