mirror of
https://github.com/postgres/postgres.git
synced 2026-04-14 21:47:31 -04: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
1 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue