Commit 270d7dd8 authored by Tom Lane's avatar Tom Lane

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.
parent 91124461
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment