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:
@ -565,7 +565,7 @@ ProcessStandbyReplyMessage(void)
|
|||||||
{
|
{
|
||||||
TransactionId nextXid;
|
TransactionId nextXid;
|
||||||
uint32 nextEpoch;
|
uint32 nextEpoch;
|
||||||
bool epochOK;
|
bool epochOK = false;
|
||||||
|
|
||||||
GetNextXidAndEpoch(&nextXid, &nextEpoch);
|
GetNextXidAndEpoch(&nextXid, &nextEpoch);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user