git: 10297a9ed488 - main - sh: Fix mismatch in array bounds for vforkexecshell().
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 28 Sep 2022 21:06:47 UTC
The branch main has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=10297a9ed488a9fff159ae495b61185e6f50e22a commit 10297a9ed488a9fff159ae495b61185e6f50e22a Author: John Baldwin <jhb@FreeBSD.org> AuthorDate: 2022-09-28 21:04:08 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2022-09-28 21:05:07 +0000 sh: Fix mismatch in array bounds for vforkexecshell(). Reviewed by: imp, jilles, emaste Reported by: GCC -Warray-parameter Differential Revision: https://reviews.freebsd.org/D36760 --- bin/sh/jobs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sh/jobs.h b/bin/sh/jobs.h index d0caf0638617..411d08f27a67 100644 --- a/bin/sh/jobs.h +++ b/bin/sh/jobs.h @@ -55,7 +55,7 @@ void setjobctl(int); void showjobs(int, int); struct job *makejob(union node *, int); pid_t forkshell(struct job *, union node *, int); -pid_t vforkexecshell(struct job *, char **, char **, const char *, int, int []); +pid_t vforkexecshell(struct job *, char **, char **, const char *, int, int [2]); int waitforjob(struct job *, int *); int stoppedjobs(void); int backgndpidset(void);