mirror of
https://github.com/postgres/postgres.git
synced 2025-10-19 00:05:18 -04:00
Fix blatantly uninitialized variable in recent commit.
Doesn't anybody around here pay attention to compiler warnings?
This commit is contained in:
parent
a2095f7fb5
commit
93016983d1
@ -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);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user