stat() the correct file in execvp() so that the fine tuned errno handling

actually works.
This commit is contained in:
Bruce Evans 1997-11-20 15:09:38 +00:00
parent 74b634ac40
commit 70df31a627
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@
static char sccsid[] = "@(#)exec.c 8.1 (Berkeley) 6/4/93"; static char sccsid[] = "@(#)exec.c 8.1 (Berkeley) 6/4/93";
#endif #endif
static const char rcsid[] = static const char rcsid[] =
"$Id$"; "$Id: exec.c,v 1.6 1997/10/14 07:23:16 bde Exp $";
#endif /* LIBC_SCCS and not lint */ #endif /* LIBC_SCCS and not lint */
#include <sys/param.h> #include <sys/param.h>
@ -283,7 +283,7 @@ retry: (void)execve(bp, argv, environ);
* We hope that the race for a stat() is unimportant. * We hope that the race for a stat() is unimportant.
*/ */
save_errno = errno; save_errno = errno;
if (stat(argv[0], &sb) != 0) if (stat(bp, &sb) != 0)
break; break;
if (save_errno == EACCES) { if (save_errno == EACCES) {
eacces = 1; eacces = 1;