summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'string.c')
-rw-r--r--string.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/string.c b/string.c
index 72a1783aa8..4eb2bb9966 100644
--- a/string.c
+++ b/string.c
@@ -58,6 +58,10 @@ str_new(klass, ptr, len)
{
VALUE str = rb_obj_alloc(klass);
+ if (len < 0) {
+ rb_raise(rb_eArgError, "negative string size (or size too big)");
+ }
+
RSTRING(str)->len = len;
RSTRING(str)->aux.capa = len;
RSTRING(str)->ptr = ALLOC_N(char,len+1);
@@ -460,8 +464,8 @@ void
rb_str_modify(str)
VALUE str;
{
- if (str_independent(str)) return;
- str_make_independent(str);
+ if (!str_independent(str))
+ str_make_independent(str);
}
VALUE