From 93016983d1e8f3aeb508f1be8daf5ca5de5c5b61 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 16 Feb 2011 19:53:20 -0500 Subject: [PATCH] Fix blatantly uninitialized variable in recent commit. Doesn't anybody around here pay attention to compiler warnings? --- src/backend/replication/walsender.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.11.0