summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--marshal.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3f47593ccd..084519684a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/marshal.c b/marshal.c
index c59053439b..950a1b31d1 100644
--- a/marshal.c
+++ b/marshal.c
@@ -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);