mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/dl/cptr.c (rb_dlptr_s_to_ptr): fixed shadowing variable.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18510 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0bf6ed0fc8
commit
3c1fca24e2
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
Tue Aug 12 14:15:13 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/dl/cptr.c (rb_dlptr_s_to_ptr): fixed shadowing variable.
|
||||
|
||||
Tue Aug 12 10:18:01 2008 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* test/win32ole/test_err_in_callback.rb: do not require 'mkmf'
|
||||
|
|
|
@ -426,8 +426,8 @@ rb_dlptr_s_to_ptr(VALUE self, VALUE val)
|
|||
ptr = rb_dlptr_new(fp, 0, NULL);
|
||||
}
|
||||
else if (rb_obj_is_kind_of(val, rb_cString) == Qtrue){
|
||||
char *ptr = StringValuePtr(val);
|
||||
ptr = rb_dlptr_new(ptr, RSTRING_LEN(val), NULL);
|
||||
char *str = StringValuePtr(val);
|
||||
ptr = rb_dlptr_new(str, RSTRING_LEN(val), NULL);
|
||||
}
|
||||
else if (rb_respond_to(val, id_to_ptr)){
|
||||
VALUE vptr = rb_funcall(val, id_to_ptr, 0);
|
||||
|
|
Loading…
Reference in a new issue