8000 Suppress possibly-uninitialized-variable warning. · postgrespro/postgres_cluster@56ba337 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

8000
Appearance settings

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

Lines changed: 1 addition & 2 deletions
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)
0