Support building with recent versions of the Ruby 1.9 development branch.
Fixes bug #1560092. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9333 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
8fa318ee36
commit
2f6a268e55
11 changed files with 137 additions and 118 deletions
|
|
@ -11,7 +11,7 @@ SWIG_AsVal(jstring)(VALUE obj, jstring *val)
|
|||
if (TYPE(obj) == T_STRING) {
|
||||
if (val) {
|
||||
char *cstr = rb_string_value_ptr(&(obj));
|
||||
jsize len = RSTRING(obj)->len;
|
||||
jsize len = RSTRING_LEN(obj);
|
||||
*val = JvNewStringLatin1(cstr, len);
|
||||
}
|
||||
return SWIG_NEWOBJ;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue