mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
fsck: don't kill pid -1! (Roy Marples <roy at marples.name>)
This commit is contained in:
parent
6e602c4931
commit
30eb319103
1 changed files with 6 additions and 0 deletions
|
|
@ -663,6 +663,12 @@ static void execute(const char *type, const char *device, const char *mntpt,
|
|||
for (i = num_args+1; i < argc; i++)
|
||||
free(argv[i]);
|
||||
|
||||
/* No pid, so don't record an instance */
|
||||
if (pid < 0) {
|
||||
free(inst);
|
||||
return;
|
||||
}
|
||||
|
||||
inst->pid = pid;
|
||||
inst->prog = argv[0];
|
||||
inst->type = xstrdup(type);
|
||||
|
|
|
|||
Loading…
Reference in a new issue