summaryrefslogtreecommitdiff
path: root/re.c
diff options
context:
space:
mode:
Diffstat (limited to 're.c')
-rw-r--r--re.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/re.c b/re.c
index 176c3bc8ec..d6f860b86f 100644
--- a/re.c
+++ b/re.c
@@ -781,11 +781,16 @@ match_to_a(match)
VALUE ary = rb_ary_new2(regs->num_regs);
char *ptr = RSTRING(RMATCH(match)->str)->ptr;
int i;
-
+ int taint = OBJ_TAINTED(match);
+
for (i=0; i<regs->num_regs; i++) {
- if (regs->beg[i] == -1) rb_ary_push(ary, Qnil);
- else rb_ary_push(ary, rb_str_new(ptr+regs->beg[i],
- regs->end[i]-regs->beg[i]));
+ if (regs->beg[i] == -1) {
+ rb_ary_push(ary, Qnil);
+ } else {
+ VALUE str = rb_str_new(ptr+regs->beg[i], regs->end[i]-regs->beg[i]);
+ if (taint) OBJ_TAINT(str);
+ rb_ary_push(ary, str);
+ }
}
return ary;
}
@@ -1122,7 +1127,7 @@ rb_reg_s_quote(argc, argv)
}
kcode_reset_option();
rb_str_resize(tmp, t - RSTRING(tmp)->ptr);
-
+ OBJ_INFECT(tmp, str);
return tmp;
}