mirror of
https://github.com/postgres/postgres.git
synced 2026-05-28 04:35:45 -04: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:
parent
4b35408f1e
commit
69639e2b5c
1 changed files with 2 additions and 0 deletions
|
|
@ -5286,6 +5286,8 @@ StartupXLOG(void)
|
|||
PerformWalRecovery();
|
||||
performedWalRecovery = true;
|
||||
}
|
||||
else
|
||||
performedWalRecovery = false;
|
||||
|
||||
/*
|
||||
* Finish WAL recovery.
|
||||
|
|
|
|||
Loading…
Reference in a new issue