Suppress uninitialized-variable warnings.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 818e59373625d194bdec89631b661c4355d15f13
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2016-03-30T17:36:18Z
Releases: 9.6.0
Suppress uninitialized-variable warnings.

My compiler doesn't like the lack of initialization of "flag", and
I think it's right: if there were zero keys we'd have an undefined
result.  The AND of zero items is TRUE, so initialize to TRUE.

Files

PathChange+/−
src/backend/utils/adt/geo_spgist.c modified +2 −2