<font size=2 face="sans-serif">Hi </font>
<br>
<br><font size=2 face="sans-serif">When I compiled mapserver 5.6.3 I got
a warning, that a variable may be used without initialization. </font>
<br><font size=2 face="sans-serif">maporaclespatial.c; line 1322/1331:
</font>
<br>
<br><font size=2 face="sans-serif">Code looks indeed a bit strange ...
</font>
<br>
<br><font size=2 face="sans-serif">static void osPointCluster(msOracleSpatialHandler
*hand, shapeObj *shape, SDOGeometryObj *obj, int start, int end, lineObj
points, int interpretation, int data3d, int data4d) </font>
<br><font size=2 face="sans-serif">{ </font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp;int n; </font>
<br>
<br><font size=2 face="sans-serif">&nbsp; &nbsp;//n = (end - start)/2;
</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp;//n = interpretation; </font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp;</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp;// </font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp;</font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp;//if (n == interpretation)
</font>
<br><font size=2 face="sans-serif">&nbsp; // { </font>
<br><font size=2 face="sans-serif">&nbsp; &nbsp; &nbsp; &nbsp;points.point
= (pointObj *)malloc( sizeof(pointObj)*n ); </font>
<br>
<br><font size=2 face="sans-serif">&quot;n&quot; is used in malloc without
any defined value ... </font>
<br>
<br><font size=2 face="sans-serif">Bye, Benedikt </font>
<br>