Skip to content
Snippets Groups Projects
Commit 56ba337e authored by Tom Lane's avatar Tom Lane
Browse files

Suppress possibly-uninitialized-variable warning.

parent c04b9c1f
Branches
Tags
No related merge requests found
...@@ -426,8 +426,7 @@ spg_range_quad_inner_consistent(PG_FUNCTION_ARGS) ...@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment