From: Sandro Santilli Date: Fri, 20 Jan 2012 08:46:04 +0000 (+0000) Subject: Fix a missing return introduced with fix to #547 X-Git-Tag: 2.0.0alpha2~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5c31d5416f865a2250e489fde76ab01d92287125;p=postgis Fix a missing return introduced with fix to #547 git-svn-id: http://svn.osgeo.org/postgis/trunk@8888 b70326c6-7e19-0410-871a-916f4a2858ee --- 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; }