mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* cont.c (rb_fiber_start): fixed unconditional test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25637 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
02d55ac989
commit
fec2ed5f4d
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Wed Nov 4 08:19:31 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* cont.c (rb_fiber_start): fixed unconditional test.
|
||||
|
||||
Wed Nov 4 02:08:14 2009 Aaron Patterson <tenderlove@ruby-lang.org>
|
||||
|
||||
* ext/dl/cptr.c (rb_dlptr_eql, rb_dlptr_cmp): DL::CPtr#== and DL::CPtr#<=>
|
||||
|
|
2
cont.c
2
cont.c
|
@ -858,7 +858,7 @@ rb_fiber_start(void)
|
|||
TH_POP_TAG();
|
||||
|
||||
if (state) {
|
||||
if (TAG_RAISE) {
|
||||
if (state == TAG_RAISE) {
|
||||
th->thrown_errinfo = th->errinfo;
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Reference in a new issue