* cont.c (cont_free): check Fiber or Continuation.

* bootstraptest/test_knownbug.rb: remove a fixed test.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13644 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2007-10-06 07:30:02 +00:00
parent 597974c21f
commit 68bcdf4c7e
3 changed files with 8 additions and 6 deletions

View File

@ -1,3 +1,9 @@
Sat Oct 6 16:24:02 2007 Koichi Sasada <ko1@atdot.net>
* cont.c (cont_free): check Fiber or Continuation.
* bootstraptest/test_knownbug.rb: remove a fixed test.
Sat Oct 6 14:56:02 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
* encoding.c (rb_enc_register): returns new index or -1 if failed.

View File

@ -17,11 +17,6 @@ assert_normal_exit %q{
Marshal.load(Marshal.dump({"k"=>"v"}), lambda {|v| })
}
assert_normal_exit %q{
require 'continuation'
Fiber.new{ callcc{|c| @c = c } }.resume
}, '[ruby-dev:31913]'
assert_not_match /method_missing/, %q{
STDERR.reopen(STDOUT)
variable_or_mehtod_not_exist

3
cont.c
View File

@ -86,7 +86,8 @@ cont_free(void *ptr)
RUBY_FREE_UNLESS_NULL(cont->machine_register_stack);
#endif
RUBY_FREE_UNLESS_NULL(cont->vm_stack);
if (cont->saved_thread.local_storage) {
if (cont->vm_stack && cont->saved_thread.local_storage) {
/* fiber */
st_free_table(cont->saved_thread.local_storage);
}
ruby_xfree(ptr);