From: Tom Lane Date: Thu, 17 Feb 2011 00:53:20 +0000 (-0500) Subject: Fix blatantly uninitialized variable in recent commit. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=93016983d1e8f3aeb508f1be8daf5ca5de5c5b61;p=pg-rex%2Fsyncrep.git Fix blatantly uninitialized variable in recent commit. Doesn't anybody around here pay attention to compiler warnings? --- diff --git a/src/backend/replication/walsender.c b/src/backend/replication/walsender.c index 0fdf722f85..a6a7a1425b 100644 --- a/src/backend/replication/walsender.c +++ b/src/backend/replication/walsender.c @@ -565,7 +565,7 @@ ProcessStandbyReplyMessage(void) { TransactionId nextXid; uint32 nextEpoch; - bool epochOK; + bool epochOK = false; GetNextXidAndEpoch(&nextXid, &nextEpoch);