diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-03-28 08:43:25 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-03-28 08:43:25 +0000 |
commit | 62261ccb47fce9c4728cfbeb84f81d23369ab910 (patch) | |
tree | 3f1464728d4c6d3ba1e64bbe22e1f00672a8690a /prec.c | |
parent | 6771ffa97125d57a48378daed460ec22db7dd835 (diff) | |
download | ruby-62261ccb47fce9c4728cfbeb84f81d23369ab910.tar.gz |
* object.c (rb_str2cstr): warn if string contains \0 and length
value is ignored.
* class.c (rb_singleton_class_clone): should copy class constant
table as well.
* class.c (rb_include_module): sometimes cache was mistakenly left
uncleared - based on the patch by K.Kosako.
* ruby.h: all Check_SafeStr()'s are replaced by SafeStr() to
ensure 'to_str' be always effective.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'prec.c')
-rw-r--r-- | prec.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -47,6 +47,7 @@ prec_induced_from(module, x) { rb_raise(rb_eTypeError, "undefined conversion from %s into %s", rb_class2name(CLASS_OF(x)), rb_class2name(module)); + return Qnil; /* not reached */ } static VALUE |