mirror of https://github.com/citusdata/citus.git
Initialize entry variable as NULL
parent
09f737d942
commit
ddc8e6c702
|
@ -200,7 +200,7 @@ cstore_init_write_state(RelFileNode relfilenode, TupleDesc tupdesc,
|
||||||
void
|
void
|
||||||
FlushWriteStateForRelfilenode(Oid relfilenode, SubTransactionId currentSubXid)
|
FlushWriteStateForRelfilenode(Oid relfilenode, SubTransactionId currentSubXid)
|
||||||
{
|
{
|
||||||
WriteStateMapEntry *entry;
|
WriteStateMapEntry *entry = NULL;
|
||||||
bool found = false;
|
bool found = false;
|
||||||
|
|
||||||
if (WriteStateMap)
|
if (WriteStateMap)
|
||||||
|
|
Loading…
Reference in New Issue