1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* marshal.c (r_object0): missing break. [ruby-core:09345]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11232 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2006-10-27 22:57:19 +00:00
parent 2c82a6a65b
commit 1b8d6cea5a
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sat Oct 28 07:56:13 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* marshal.c (r_object0): missing break. [ruby-core:09345]
Fri Oct 27 17:30:31 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* enumerator.c (enum_each_cons): move RETURN_ENUMERATOR() after

View file

@ -1276,6 +1276,7 @@ r_object0(struct load_arg *arg, int *ivp, VALUE extmod)
case TYPE_SYMLINK:
v = ID2SYM(r_symlink(arg));
break;
default:
rb_raise(rb_eArgError, "dump format error(0x%x)", type);