summaryrefslogtreecommitdiff
path: root/posix/execl.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2001-09-14 10:14:51 +0000
committerAndreas Schwab <schwab@suse.de>2001-09-14 10:14:51 +0000
commit0f5660af02985db9a61a6ffeb9b1dc449e78a35c (patch)
tree202b3b64d453240e220e7d6659cf63d75933a8f3 /posix/execl.c
parent23382b36a7f28c5205edd77bacf00fa7cbee9d53 (diff)
* posix/execl.c: Fix last argument of memcpy. Reported by Brian
Sumner <bls@sgi.com>. * posix/execlp.c: Likewise.
Diffstat (limited to 'posix/execl.c')
-rw-r--r--posix/execl.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/posix/execl.c b/posix/execl.c
index e831f5452f..72748a456f 100644
--- a/posix/execl.c
+++ b/posix/execl.c
@@ -52,7 +52,8 @@ execl (const char *path, const char *arg, ...)
if ((char *) nptr + argv_max == (char *) argv)
{
/* Stack grows down. */
- argv = (const char **) memcpy (nptr, argv, i);
+ argv = (const char **) memcpy (nptr, argv,
+ i * sizeof (const char *));
argv_max += i;
}
else
@@ -64,7 +65,8 @@ execl (const char *path, const char *arg, ...)
else
#endif
/* We have a hole in the stack. */
- argv = (const char **) memcpy (nptr, argv, i);
+ argv = (const char **) memcpy (nptr, argv,
+ i * sizeof (const char *));
}
argv[i] = va_arg (args, const char *);