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

win32ole.c: share the content

* ext/win32ole/win32ole.c (fole_missing): make substring or dup to
  share the content if possible.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2016-05-20 12:17:14 +00:00
parent 2eb1ec25d1
commit 27c13f82b9
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Fri May 20 21:17:13 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/win32ole/win32ole.c (fole_missing): make substring or dup to
share the content if possible.
Fri May 20 19:48:48 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* internal.h (NEW_PARTIAL_MEMO_FOR): shrink buffer array not to

View file

@ -3303,12 +3303,12 @@ fole_missing(int argc, VALUE *argv, VALUE self)
n = RSTRING_LEN(mid);
if(mname[n-1] == '=') {
rb_check_arity(argc, 2, 2);
argv[0] = rb_enc_str_new(mname, (n-1), cWIN32OLE_enc);
argv[0] = rb_enc_associate(rb_str_subseq(mid, 0, n-1), cWIN32OLE_enc);
return ole_propertyput(self, argv[0], argv[1]);
}
else {
argv[0] = rb_enc_str_new(mname, n, cWIN32OLE_enc);
argv[0] = rb_enc_associate(rb_str_dup(mid), cWIN32OLE_enc);
return ole_invoke(argc, argv, self, DISPATCH_METHOD|DISPATCH_PROPERTYGET, FALSE);
}
}