Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 56ba337

Browse files
committed
Suppress possibly-uninitialized-variable warning.
1 parent c04b9c1 commit 56ba337

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/backend/utils/adt/rangetypes_spgist.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -426,8 +426,7 @@ spg_range_quad_inner_consistent(PG_FUNCTION_ARGS)
426426
RangeBound lower,
427427
upper;
428428
bool empty;
429-
RangeType *range;
430-
429+
RangeType *range = NULL;
431430
/* Restrictions on range bounds according to scan strategy */
432431
RangeBound *minLower = NULL,
433432
*maxLower = NULL,

0 commit comments

Comments
 (0)