diff options
author | Warner Losh <imp@FreeBSD.org> | 1998-09-16 04:17:47 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 1998-09-16 04:17:47 +0000 |
commit | e8420087b0ae4a2d0611cd2f6413d150cfc83554 (patch) | |
tree | 69de0b126d131ecd617d41b6eba03770319d92e3 /lib/libc/stdlib/setenv.c | |
parent | e9363917832d4d492df8463833be0cd952076fa8 (diff) |
Notes
Diffstat (limited to 'lib/libc/stdlib/setenv.c')
-rw-r--r-- | lib/libc/stdlib/setenv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdlib/setenv.c b/lib/libc/stdlib/setenv.c index d9812771e700..4c00b6e882f3 100644 --- a/lib/libc/stdlib/setenv.c +++ b/lib/libc/stdlib/setenv.c @@ -73,7 +73,7 @@ setenv(name, value, rewrite) for (p = environ, cnt = 0; *p; ++p, ++cnt); if (alloced) { /* just increase size */ - environ = (char **)realloc((char *)environ, + environ = (char **)reallocf((char *)environ, (size_t)(sizeof(char *) * (cnt + 2))); if (!environ) return (-1); |