]> granicus.if.org Git - postgresql/commitdiff
Fix blatantly uninitialized variable in recent commit.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 17 Feb 2011 00:53:20 +0000 (19:53 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 17 Feb 2011 00:53:20 +0000 (19:53 -0500)
Doesn't anybody around here pay attention to compiler warnings?

src/backend/replication/walsender.c

index 0fdf722f8522f7249fc39875ebe1ba0e764ed333..a6a7a1425be909eceb26f88f92d746f7a8280278 100644 (file)
@@ -565,7 +565,7 @@ ProcessStandbyReplyMessage(void)
        {
                TransactionId   nextXid;
                uint32                  nextEpoch;
-               bool                    epochOK;
+               bool                    epochOK = false;
 
                GetNextXidAndEpoch(&nextXid, &nextEpoch);