From 6a6ebb92b0d4c0787797538ec3ff342fd8e7c1ed Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Mon, 22 Jul 2024 15:32:43 -0400 Subject: Initialize wal_level in the initial checkpoint record. As per Coverity and Tom Lane, commit 402b586d0 (back-patched to v17 as 2b5819e2b) forgot to initialize this new structure member in this code path. --- src/backend/access/transam/xlog.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/backend/access/transam/xlog.c') diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 636be5ca4da..d70ba67bac9 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -5045,6 +5045,7 @@ BootStrapXLOG(void) checkPoint.ThisTimeLineID = BootstrapTimeLineID; checkPoint.PrevTimeLineID = BootstrapTimeLineID; checkPoint.fullPageWrites = fullPageWrites; + checkPoint.wal_level = wal_level; checkPoint.nextXid = FullTransactionIdFromEpochAndXid(0, FirstNormalTransactionId); checkPoint.nextOid = FirstGenbkiObjectId; -- cgit v1.2.3