Fix blatantly uninitialized variable in recent commit.

Doesn't anybody around here pay attention to compiler warnings?
This commit is contained in:
Tom Lane 2011-02-16 19:53:20 -05:00
parent a2095f7fb5
commit 93016983d1
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@ ProcessStandbyReplyMessage(void)
{
TransactionId nextXid;
uint32 nextEpoch;
bool epochOK;
bool epochOK = false;
GetNextXidAndEpoch(&nextXid, &nextEpoch);