]> granicus.if.org Git - postgis/commitdiff
Fix a missing return introduced with fix to #547
authorSandro Santilli <strk@keybit.net>
Fri, 20 Jan 2012 08:46:04 +0000 (08:46 +0000)
committerSandro Santilli <strk@keybit.net>
Fri, 20 Jan 2012 08:46:04 +0000 (08:46 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@8888 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/lwgeom_cache.c

index 9063036d01a1386e7ebf035f33a7d01d9ad4c0ac..400ad314fd29737c7a20940806c73ded1026d05e 100644 (file)
@@ -26,5 +26,6 @@ GeomCache* GetGeomCache(FunctionCallInfoData *fcinfo)
                cache->prep = 0;
                cache->rtree = 0;
        }
+       return cache;
 }