Commit 93016983 authored by Tom Lane's avatar Tom Lane

Fix blatantly uninitialized variable in recent commit.

Doesn't anybody around here pay attention to compiler warnings?
parent a2095f7f
...@@ -565,7 +565,7 @@ ProcessStandbyReplyMessage(void) ...@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment