]> granicus.if.org Git - postgis/commitdiff
Removed another getbox2d() call.
authorSandro Santilli <strk@keybit.net>
Wed, 27 Oct 2004 11:02:24 +0000 (11:02 +0000)
committerSandro Santilli <strk@keybit.net>
Wed, 27 Oct 2004 11:02:24 +0000 (11:02 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@1046 b70326c6-7e19-0410-871a-916f4a2858ee

lwgeom/lwgeom_estimate.c

index bc8321a017467940c567e95b97d49812256c5f92..011a41fc7cb74e080616f0130aa7226e0fb6b417 100644 (file)
@@ -10,6 +10,9 @@
  * 
  **********************************************************************
  * $Log$
+ * Revision 1.11  2004/10/27 11:02:24  strk
+ * Removed another getbox2d() call.
+ *
  * Revision 1.10  2004/10/25 17:07:09  strk
  * Obsoleted getbox2d(). Use getbox2d_p() or getbox2d_internal() instead.
  *
@@ -883,7 +886,14 @@ Datum LWGEOM_gist_sel(PG_FUNCTION_ARGS)
        in = (char *)PG_DETOAST_DATUM( ((Const*)other)->constvalue );
 
        //search_box = convert_box3d_to_box(&in->bvol);
-       search_box = getbox2d(in+4);
+       if ( ! getbox2d_p(in+4, &search_box) )
+       {
+               // empty geom
+#if DEBUG_GEOMETRY_STATS 
+               elog(NOTICE, "search box is EMPTY");
+#endif
+               PG_RETURN_FLOAT8(0.0);
+       }
 
        //elog(NOTICE,"requested search box is : (%.15g %.15g, %.15g %.15g)",search_box->xmin,search_box->ymin,search_box->xmax,search_box->ymax);