From 5c31d5416f865a2250e489fde76ab01d92287125 Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Fri, 20 Jan 2012 08:46:04 +0000 Subject: [PATCH] Fix a missing return introduced with fix to #547 git-svn-id: http://svn.osgeo.org/postgis/trunk@8888 b70326c6-7e19-0410-871a-916f4a2858ee --- postgis/lwgeom_cache.c | 1 + 1 file changed, 1 insertion(+) diff --git a/postgis/lwgeom_cache.c b/postgis/lwgeom_cache.c index 9063036d0..400ad314f 100644 --- a/postgis/lwgeom_cache.c +++ b/postgis/lwgeom_cache.c @@ -26,5 +26,6 @@ GeomCache* GetGeomCache(FunctionCallInfoData *fcinfo) cache->prep = 0; cache->rtree = 0; } + return cache; } -- 2.50.1