mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Fix uninitialized variable.
I'm very surprised the compiler didn't warn about it. But Coverity and Valgrind did.
This commit is contained in:
@ -5286,6 +5286,8 @@ StartupXLOG(void)
|
|||||||
PerformWalRecovery();
|
PerformWalRecovery();
|
||||||
performedWalRecovery = true;
|
performedWalRecovery = true;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
performedWalRecovery = false;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Finish WAL recovery.
|
* Finish WAL recovery.
|
||||||
|
Reference in New Issue
Block a user