about summary refs log tree commit diff
path: root/posix/execlp.c
diff options
context:
space:
mode:
Diffstat (limited to 'posix/execlp.c')
-rw-r--r--posix/execlp.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/posix/execlp.c b/posix/execlp.c
index 88a54178cc..6cad6402ec 100644
--- a/posix/execlp.c
+++ b/posix/execlp.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1993, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1993, 1996, 1997, 1998 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -36,8 +36,8 @@ execlp (const char *file, const char *arg, ...)
   argv[0] = arg;
 
   va_start (args, arg);
-  i = 1;
-  do
+  i = 0;
+  while (argv[i++] != NULL)
     {
       if (i == argv_max)
 	{
@@ -59,7 +59,6 @@ execlp (const char *file, const char *arg, ...)
 
       argv[i] = va_arg (args, const char *);
     }
-  while (argv[i++] != NULL);
   va_end (args);
 
   return execvp (file, (char *const *) argv);