mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/dl/sym.c (rb_dlsym_initialize): extract internal pointers after
all argument conversion. fixed: [ruby-dev:25271] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7631 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e537aaba91
commit
bf48e22869
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Dec 22 08:34:32 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/dl/sym.c (rb_dlsym_initialize): extract internal pointers after
|
||||
all argument conversion. fixed: [ruby-dev:25271]
|
||||
|
||||
Tue Dec 21 16:15:21 2004 Michael Neumann <mneumann@ruby-lang.org>
|
||||
|
||||
* lib/xmlrpc/client.rb: use "" instead of "." if prefix argument is
|
||||
|
|
|
@ -154,8 +154,9 @@ rb_dlsym_initialize(int argc, VALUE argv[], VALUE self)
|
|||
rb_scan_args(argc, argv, "12", &addr, &name, &type);
|
||||
|
||||
saddr = (void*)(DLNUM2LONG(rb_Integer(addr)));
|
||||
sname = NIL_P(name) ? NULL : StringValuePtr(name);
|
||||
if (!NIL_P(name)) StringValue(name);
|
||||
stype = NIL_P(type) ? NULL : StringValuePtr(type);
|
||||
sname = NIL_P(name) ? NULL : RSTRING(name)->ptr;
|
||||
|
||||
if( saddr ){
|
||||
Data_Get_Struct(self, struct sym_data, data);
|
||||
|
|
Loading…
Reference in a new issue