summaryrefslogtreecommitdiffstats
path: root/string.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-08 04:42:46 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-08 04:42:46 +0000
commit4ad9d4f0ef3c477f44853c4554d4bb52d8ce33b2 (patch)
tree9cc2dd73b586e08de50d1313866b65a025fa2e0c /string.c
parent17bf7194228855b3c078bafc015b3f5caffda5bd (diff)
downloadruby-4ad9d4f0ef3c477f44853c4554d4bb52d8ce33b2.tar.gz
ruby-4ad9d4f0ef3c477f44853c4554d4bb52d8ce33b2.tar.xz
ruby-4ad9d4f0ef3c477f44853c4554d4bb52d8ce33b2.zip
* missing/strchr.c (strrchr): fixed a bug for detecting NUL in a
string. [ruby-dev:26985] * string.c (rb_str_times): should taint empty strings as well. * object.c (Init_Object): make class_variable_{get,set} public. [ruby-dev:26965] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9100 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/string.c b/string.c
index 709c26399..363600662 100644
--- a/string.c
+++ b/string.c
@@ -409,7 +409,6 @@ rb_str_times(str, times)
long i, len;
len = NUM2LONG(times);
- if (len == 0) return rb_str_new5(str,0,0);
if (len < 0) {
rb_raise(rb_eArgError, "negative argument");
}