Fix error message in %typemap(in) SWIGTYPE*.
Change handling of char[ANY] out. Now return null padding. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7469 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
d4e5c9fbca
commit
dbcae3b00c
1 changed files with 2 additions and 3 deletions
|
|
@ -86,7 +86,7 @@
|
|||
{
|
||||
/* typemap(in) SWIGTYPE * */
|
||||
if(SWIG_ConvertPtr(*$input, (void **) &$1, $1_descriptor, 0) < 0) {
|
||||
SWIG_PHP_Error(E_ERROR, "Type error in argument $argnum of $symname. Expected $&1_descriptor");
|
||||
SWIG_PHP_Error(E_ERROR, "Type error in argument $argnum of $symname. Expected $1_descriptor");
|
||||
}
|
||||
}
|
||||
%typemap(in) SWIGTYPE *DISOWN
|
||||
|
|
@ -218,8 +218,7 @@
|
|||
|
||||
%typemap(out) char [ANY]
|
||||
{
|
||||
size_t len = strnlen($1,$1_dim0);
|
||||
RETVAL_STRINGL($1,len,1);
|
||||
RETVAL_STRINGL($1,$1_dim0,1);
|
||||
}
|
||||
|
||||
// This typecheck would do hard checking for proper argument type.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue