1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

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

View File

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