Diaren,<br><br>Good point. Please file a ticket with this issue and I&#39;ll take care of fixing that in SVN branch-1.6 and trunk. <br><br>Best regards,<br><br>Tamas<br><br><br><br><div class="gmail_quote">2009/6/4 Diaren <span dir="ltr">&lt;<a href="mailto:diarenwhan@yahoo.co.uk">diarenwhan@yahoo.co.uk</a>&gt;</span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
Well I&#39;ve learnt some swig and possibly solved the problem, can someone<br>
verify that this ok and maybe turn this into a proper patch or someting was<br>
against 1.6.0:<br>
<br>
typemaps_csharp.i<br>
+244:<br>
<br>
%typemap(argout) (char **staticstring)<br>
{<br>
  /* %typemap(argout) (char **staticstring) */<br>
  *$1 = SWIG_csharp_string_callback(*$1);<br>
}<br>
<br>
osr.i:<br>
-229:<br>
%rename (GetProjectionMethodParameterList) OPTGetParameterList;<br>
%apply (char **CSL) {(char **)};<br>
char **OPTGetParameterList( char *method, char **username );<br>
%clear (char **);<br>
<br>
%rename (GetProjectionMethodParamInfo) OPTGetParameterInfo;<br>
void OPTGetParameterInfo( char *method, char *param, char **usrname,<br>
                          char **type, double *defaultval );<br>
<br>
+229:<br>
%rename (GetProjectionMethodParameterList) OPTGetParameterList;<br>
%apply (char **CSL) {(char **)};<br>
%apply (char **staticstring) {(char **username)};<br>
char **OPTGetParameterList( char *method, char **username );<br>
%clear (char **);<br>
%clear (char **username);<br>
<br>
%rename (GetProjectionMethodParamInfo) OPTGetParameterInfo;<br>
%apply (char **staticstring) {(char **usrname), (char **type)};<br>
void OPTGetParameterInfo( char *method, char *param, char **usrname,<br>
                          char **type, double *defaultval );<br>
%clear (char **usrname);<br>
%clear (char **type);<br>
<div class="im"><br>
<br>
Diaren wrote:<br>
&gt;<br>
&gt; Problem is I don&#39;t know the first thing about how swig works... and If I<br>
&gt; modify the OPTGetParameterList to use CPLStrdup or something, then that<br>
&gt; will cause problems for other code which knows Username is a static string<br>
&gt; and doesn&#39;t need freeing.<br>
&gt;<br>
&gt; So any swig experts that can modify the generated wrapper to not free<br>
&gt; arg2? or is OPTGetParameterList supposed to allocate the string passed<br>
&gt; back through Username?<br>
&gt;<br>
<br>
--<br>
</div>View this message in context: <a href="http://n2.nabble.com/C--Osr.GetProjectionMethodParameterList-Access-Violation-tp3024324p3024796.html" target="_blank">http://n2.nabble.com/C--Osr.GetProjectionMethodParameterList-Access-Violation-tp3024324p3024796.html</a><br>

<div><div></div><div class="h5">Sent from the GDAL - Dev mailing list archive at Nabble.com.<br>
<br>
_______________________________________________<br>
gdal-dev mailing list<br>
<a href="mailto:gdal-dev@lists.osgeo.org">gdal-dev@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/gdal-dev" target="_blank">http://lists.osgeo.org/mailman/listinfo/gdal-dev</a><br>
</div></div></blockquote></div><br>