aboutsummaryrefslogtreecommitdiff
path: root/libgo
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2017-09-18 22:29:45 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2017-09-18 22:29:45 +0000
commit4d034b52593c40db9ceeaa531eefdb628fa29ce5 (patch)
tree14d9534e0e34d1b35748d66ef2e1d01619fde7f7 /libgo
parente1227692dde1874906f7b07fd60101336efdc0fa (diff)
downloadgcc-4d034b52593c40db9ceeaa531eefdb628fa29ce5.zip
gcc-4d034b52593c40db9ceeaa531eefdb628fa29ce5.tar.gz
gcc-4d034b52593c40db9ceeaa531eefdb628fa29ce5.tar.bz2
runtime: always initialize str field in __go_string_slice result
Reviewed-on: https://go-review.googlesource.com/64110 From-SVN: r252953
Diffstat (limited to 'libgo')
-rw-r--r--libgo/runtime/go-strslice.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/libgo/runtime/go-strslice.c b/libgo/runtime/go-strslice.c
index 0e89781..d51c249 100644
--- a/libgo/runtime/go-strslice.c
+++ b/libgo/runtime/go-strslice.c
@@ -18,10 +18,13 @@ __go_string_slice (String s, intgo start, intgo end)
if (start > len || end < start || end > len)
runtime_panicstring ("string index out of bounds");
ret.len = end - start;
- // If the length of the new string is zero, don't adjust the str
- // field. This ensures that we don't create a pointer to the next
- // memory block, and thus keep it live unnecessarily.
- if (ret.len > 0)
+ // If the length of the new string is zero, the str field doesn't
+ // matter, so just set it to nil. This avoids the problem of
+ // s.str + start pointing just past the end of the string,
+ // which may keep the next memory block alive unnecessarily.
+ if (ret.len == 0)
+ ret.str = nil;
+ else
ret.str = s.str + start;
return ret;
}