*** empty log message ***

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@5222 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-10-31 19:54:35 +00:00
commit 8e7a772288

View file

@ -1815,7 +1815,7 @@ reference to be used as a char ** datatype.<p>
$1 = (char **) malloc((len+2)*sizeof(char *));
for (i = 0; i &lt;= len; i++) {
tv = av_fetch(tempav, i, 0);
$1[i] = (char *) SvPV(*tv,na);
$1[i] = (char *) SvPV(*tv,PL_na);
}
$1[i] = NULL;
};