Initialize entry variable as NULL

pull/4327/head
Sait Talha Nisanci 2020-11-19 15:23:39 +03:00
parent 09f737d942
commit ddc8e6c702
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ cstore_init_write_state(RelFileNode relfilenode, TupleDesc tupdesc,
void
FlushWriteStateForRelfilenode(Oid relfilenode, SubTransactionId currentSubXid)
{
WriteStateMapEntry *entry;
WriteStateMapEntry *entry = NULL;
bool found = false;
if (WriteStateMap)