Silence compiler warnings in tbm_prepare_shared_iterate().

Maybe Robert's compiler can convince itself that these variables are
never used uninitialized, but mine can't.
This commit is contained in:
Tom Lane 2017-03-08 10:39:40 -05:00
parent 911244610c
commit 270d7dd8a5

View File

@ -787,8 +787,8 @@ tbm_prepare_shared_iterate(TIDBitmap *tbm)
dsa_pointer dp;
TBMSharedIteratorState *istate;
PTEntryArray *ptbase;
PTIterationArray *ptpages;
PTIterationArray *ptchunks;
PTIterationArray *ptpages = NULL;
PTIterationArray *ptchunks = NULL;
Assert(tbm->dsa != NULL);
Assert(tbm->iterating != TBM_ITERATING_PRIVATE);