mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-30 19:00:29 +08:00
Small correction to previous patch: we shouldn't ReleasePostmasterChildSlot
for a dead_end child, because we didn't AssignPostmasterChildSlot.
This commit is contained in:
parent
45f9b4646f
commit
5a4f763841
@ -37,7 +37,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.588 2009/08/24 17:23:02 alvherre Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.589 2009/08/24 18:09:37 tgl Exp $
|
||||
*
|
||||
* NOTES
|
||||
*
|
||||
@ -3024,7 +3024,8 @@ BackendStartup(Port *port)
|
||||
/* in parent, fork failed */
|
||||
int save_errno = errno;
|
||||
|
||||
(void) ReleasePostmasterChildSlot(bn->child_slot);
|
||||
if (!bn->dead_end)
|
||||
(void) ReleasePostmasterChildSlot(bn->child_slot);
|
||||
free(bn);
|
||||
errno = save_errno;
|
||||
ereport(LOG,
|
||||
|
Loading…
Reference in New Issue
Block a user