Suppress possibly-uninitialized-variable warning.

This commit is contained in:
Tom Lane 2012-08-16 12:03:37 -04:00
parent c04b9c1f3d
commit 56ba337e6f

View File

@ -426,8 +426,7 @@ spg_range_quad_inner_consistent(PG_FUNCTION_ARGS)
RangeBound lower, RangeBound lower,
upper; upper;
bool empty; bool empty;
RangeType *range; RangeType *range = NULL;
/* Restrictions on range bounds according to scan strategy */ /* Restrictions on range bounds according to scan strategy */
RangeBound *minLower = NULL, RangeBound *minLower = NULL,
*maxLower = NULL, *maxLower = NULL,