[mapserver-commits] r12401 - trunk/mapserver/mapcache/src

svn at osgeo.org svn at osgeo.org
Fri Aug 26 07:22:39 EDT 2011


Author: tbonfort
Date: 2011-08-26 04:22:39 -0700 (Fri, 26 Aug 2011)
New Revision: 12401

Modified:
   trunk/mapserver/mapcache/src/geocache_seed.c
Log:
fix for issue 90.
thomas.bonfort | 2011-07-06 12:22:53 +0200 (Wed, 06 Jul 2011)

Modified: trunk/mapserver/mapcache/src/geocache_seed.c
===================================================================
--- trunk/mapserver/mapcache/src/geocache_seed.c	2011-08-26 11:22:35 UTC (rev 12400)
+++ trunk/mapserver/mapcache/src/geocache_seed.c	2011-08-26 11:22:39 UTC (rev 12401)
@@ -198,7 +198,7 @@
 
     while(1) {
         ctx->nextx += ctx->tileset->metasize_x;
-        if(ctx->nextx > tile->grid_link->grid_limits[ctx->nextz][2]) {
+        if(ctx->nextx >= tile->grid_link->grid_limits[ctx->nextz][2]) {
             ctx->nexty += ctx->tileset->metasize_y;
             if(ctx->nexty >= tile->grid_link->grid_limits[ctx->nextz][3]) {
                 ctx->nextz += 1;



More information about the mapserver-commits mailing list