diff options
Diffstat (limited to 'posix/execle.c')
-rw-r--r-- | posix/execle.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/posix/execle.c b/posix/execle.c index a8a016ee69..546063fcc7 100644 --- a/posix/execle.c +++ b/posix/execle.c @@ -48,7 +48,8 @@ execle (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 @@ -60,7 +61,8 @@ execle (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 *); |