mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-05 19:09:58 +08:00
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:
parent
911244610c
commit
270d7dd8a5
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user