[mapserver-commits] r8720 - sandbox/single-pass/mapserver
svn at osgeo.org
svn at osgeo.org
Mon Mar 9 15:04:47 EDT 2009
Author: sdlime
Date: 2009-03-09 15:04:47 -0400 (Mon, 09 Mar 2009)
New Revision: 8720
Modified:
sandbox/single-pass/mapserver/mapdraw.c
Log:
Removed one little problem...
Modified: sandbox/single-pass/mapserver/mapdraw.c
===================================================================
--- sandbox/single-pass/mapserver/mapdraw.c 2009-03-09 19:00:40 UTC (rev 8719)
+++ sandbox/single-pass/mapserver/mapdraw.c 2009-03-09 19:04:47 UTC (rev 8720)
@@ -881,7 +881,7 @@
if (layer->classgroup && layer->numclasses > 0)
classgroup = msAllocateValidClassGroups(layer, &nclasses);
- while((status = msLayerNextShape(layer, &shape, NULL)) == MS_SUCCESS) {
+ while((status = msLayerNextShape(layer, &shape)) == MS_SUCCESS) {
shape.classindex = msShapeGetClass(layer, &shape, map->scaledenom, classgroup, nclasses);
if((shape.classindex == -1) || (layer->class[shape.classindex]->status == MS_OFF)) {
More information about the mapserver-commits
mailing list