mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +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();
|
||||
performedWalRecovery = true;
|
||||
}
|
||||
else
|
||||
performedWalRecovery = false;
|
||||
|
||||
/*
|
||||
* Finish WAL recovery.
|
||||
|
Reference in New Issue
Block a user