зеркало из https://github.com/github/ruby.git
* ext/win32ole/win32ole.c (ole_invoke): use RHASH_SIZE instead of
calling Hash#length method. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47207 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
5a2c3ae883
Коммит
b62ce0e964
|
@ -1,3 +1,8 @@
|
|||
Sun Aug 17 17:08:12 2014 Masaki Suketa <masaki.suketa@nifty.ne.jp>
|
||||
|
||||
* ext/win32ole/win32ole.c (ole_invoke): use RHASH_SIZE instead of
|
||||
calling Hash#length method.
|
||||
|
||||
Sat Aug 16 19:32:06 2014 Masaki Suketa <masaki.suketa@nifty.ne.jp>
|
||||
|
||||
* ext/win32ole/win32ole_event.c (evs_length): use RARRAY_LEN instead
|
||||
|
|
|
@ -2553,7 +2553,7 @@ ole_invoke(int argc, VALUE *argv, VALUE self, USHORT wFlags, BOOL is_bracket)
|
|||
/*------------------------------------------
|
||||
hash object ==> named dispatch parameters
|
||||
--------------------------------------------*/
|
||||
cNamedArgs = NUM2INT(rb_funcall(param, rb_intern("length"), 0));
|
||||
cNamedArgs = RHASH_SIZE(param);
|
||||
op.dp.cArgs = cNamedArgs + argc - 2;
|
||||
op.pNamedArgs = ALLOCA_N(OLECHAR*, cNamedArgs + 1);
|
||||
op.dp.rgvarg = ALLOCA_N(VARIANTARG, op.dp.cArgs);
|
||||
|
|
Загрузка…
Ссылка в новой задаче