[mapserver-commits] r9571 - trunk/mapserver

svn at osgeo.org svn at osgeo.org
Thu Dec 3 12:39:21 EST 2009


Author: sdlime
Date: 2009-12-03 12:39:20 -0500 (Thu, 03 Dec 2009)
New Revision: 9571

Modified:
   trunk/mapserver/HISTORY.TXT
   trunk/mapserver/mappluginlayer.c
Log:
Fixed plugin code so copyVirtualTable() copies the LayerResultsGetShape function pointer. (#3223)

Modified: trunk/mapserver/HISTORY.TXT
===================================================================
--- trunk/mapserver/HISTORY.TXT	2009-11-27 21:26:12 UTC (rev 9570)
+++ trunk/mapserver/HISTORY.TXT	2009-12-03 17:39:20 UTC (rev 9571)
@@ -14,7 +14,10 @@
 Current Version (SVN trunk):
 ----------------------------
 
+- Fixed a problem with layer plugin where copyVirtualTable didn't copy
+the LayerResultsGetShape function pointer (#3223)
 
+
 Version 5.6.0-rc1 (2009-11-27):
 -------------------------------
 

Modified: trunk/mapserver/mappluginlayer.c
===================================================================
--- trunk/mapserver/mappluginlayer.c	2009-11-27 21:26:12 UTC (rev 9570)
+++ trunk/mapserver/mappluginlayer.c	2009-12-03 17:39:20 UTC (rev 9571)
@@ -165,6 +165,7 @@
     dest->LayerWhichShapes = src->LayerWhichShapes ? src->LayerWhichShapes : dest->LayerWhichShapes;
     dest->LayerNextShape = src->LayerNextShape ? src->LayerNextShape : dest->LayerNextShape;
     dest->LayerGetShape = src->LayerGetShape ? src->LayerGetShape : dest->LayerGetShape;
+    dest->LayerResultsGetShape = src->LayerResultsGetShape ? src->LayerResultsGetShape : dest->LayerResultsGetShape;
     dest->LayerClose = src->LayerClose ? src->LayerClose : dest->LayerClose;
     dest->LayerGetItems = src->LayerGetItems ? src->LayerGetItems : dest->LayerGetItems;
     dest->LayerGetExtent = src->LayerGetExtent ? src->LayerGetExtent : dest->LayerGetExtent;



More information about the mapserver-commits mailing list