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

* ext/dl/lib/dl/callback.rb (DL#remove_callback_internal): ignore

unbound function.  [ruby-dev:38474]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23444 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-05-16 08:57:41 +00:00
parent 461daa604b
commit 28e7beb54c
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sat May 16 17:57:39 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/dl/lib/dl/callback.rb (DL#remove_callback_internal): ignore
unbound function. [ruby-dev:38474]
Sat May 16 17:51:11 2009 Kouhei Sutou <kou@cozmixng.org>
* sample/rss/rss_recent.rb, sample/rss/list_description.rb: use

View file

@ -48,7 +48,7 @@ module DL
}
}
end
if( proc_entry[ctype][index] )
if( index and proc_entry[ctype][index] )
proc_entry[ctype][index] = nil
return true
else