diff options
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/stdlib/putenv_r.c | 2 | ||||
-rw-r--r-- | newlib/libc/stdlib/setenv_r.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdlib/putenv_r.c b/newlib/libc/stdlib/putenv_r.c index 9ba6260..a0f4767 100644 --- a/newlib/libc/stdlib/putenv_r.c +++ b/newlib/libc/stdlib/putenv_r.c @@ -43,7 +43,7 @@ _DEFUN (_putenv_r, (reent_ptr, str), if (!p) return 1; - if (!(equal = index (p, '='))) + if (!(equal = strchr (p, '='))) { (void) _free_r (reent_ptr, p); return 1; diff --git a/newlib/libc/stdlib/setenv_r.c b/newlib/libc/stdlib/setenv_r.c index d73ba39..f9ff2c1 100644 --- a/newlib/libc/stdlib/setenv_r.c +++ b/newlib/libc/stdlib/setenv_r.c @@ -110,7 +110,7 @@ _DEFUN (_setenv_r, (reent_ptr, name, value, rewrite), ENV_UNLOCK; return (-1); } - bcopy ((char *) *p_environ, (char *) P, cnt * sizeof (char *)); + memcpy((char *) P,(char *) *p_environ, cnt * sizeof (char *)); *p_environ = P; } (*p_environ)[cnt + 1] = NULL; |