diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-06-06 22:37:27 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2014-06-06 22:37:27 +0000 |
commit | 6736ef96eab222e58e6294f42be981a5afb59811 (patch) | |
tree | 2bc668fae9bf96f9a3988e0b0a16685bde8c4f0b /libgo/runtime/go-setenv.c | |
parent | 38a138411da4206c53f9a153ee9c3624fce58a52 (diff) | |
download | gcc-6736ef96eab222e58e6294f42be981a5afb59811.zip gcc-6736ef96eab222e58e6294f42be981a5afb59811.tar.gz gcc-6736ef96eab222e58e6294f42be981a5afb59811.tar.bz2 |
libgo: Merge to master revision 19184.
The next revision, 19185, renames several runtime files, and
will be handled in a separate change.
From-SVN: r211328
Diffstat (limited to 'libgo/runtime/go-setenv.c')
-rw-r--r-- | libgo/runtime/go-setenv.c | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/libgo/runtime/go-setenv.c b/libgo/runtime/go-setenv.c index 6c7378c..a75d7c4 100644 --- a/libgo/runtime/go-setenv.c +++ b/libgo/runtime/go-setenv.c @@ -11,6 +11,8 @@ #include "go-alloc.h" #include "runtime.h" +#include "arch.h" +#include "malloc.h" /* Set the C environment from Go. This is called by syscall.Setenv. */ @@ -23,6 +25,7 @@ setenv_c (String k, String v) unsigned char *kn; const byte *vs; unsigned char *vn; + intgo len; ks = k.str; if (ks == NULL) @@ -38,14 +41,22 @@ setenv_c (String k, String v) if (ks != NULL && ks[k.len] != 0) { - kn = __go_alloc (k.len + 1); + // Objects that are explicitly freed must be at least 16 bytes in size, + // so that they are not allocated using tiny alloc. + len = k.len + 1; + if (len < TinySize) + len = TinySize; + kn = __go_alloc (len); __builtin_memcpy (kn, ks, k.len); ks = kn; } if (vs != NULL && vs[v.len] != 0) { - vn = __go_alloc (v.len + 1); + len = v.len + 1; + if (len < TinySize) + len = TinySize; + vn = __go_alloc (len); __builtin_memcpy (vn, vs, v.len); vs = vn; } @@ -54,7 +65,10 @@ setenv_c (String k, String v) #else /* !defined(HAVE_SETENV) */ - kn = __go_alloc (k.len + v.len + 2); + len = k.len + v.len + 2; + if (len < TinySize) + len = TinySize; + kn = __go_alloc (len); __builtin_memcpy (kn, ks, k.len); kn[k.len] = '='; __builtin_memcpy (kn + k.len + 1, vs, v.len); |