mirror of
https://github.com/postgres/postgres.git
synced 2026-03-08 00:01:15 -05:00
Fix a thinko introduced into CountActiveBackends by a recent patch:
we should ignore NULL array entries, not non-NULL ones. This had the effect of disabling commit_delay, and could have caused a crash in the rare race condition the patch was intended to fix. Bug report and diagnosis by Jeff Janes, in bug #4952.
This commit is contained in:
parent
a142498e76
commit
aea7affde7
1 changed files with 2 additions and 2 deletions
|
|
@ -23,7 +23,7 @@
|
|||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/storage/ipc/procarray.c,v 1.19.2.1 2009/03/31 05:18:43 heikki Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/storage/ipc/procarray.c,v 1.19.2.2 2009/07/29 15:57:33 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
|
|
@ -836,7 +836,7 @@ CountActiveBackends(void)
|
|||
* the free list and are recycled. Its contents are nonsense in that
|
||||
* case, but that's acceptable for this function.
|
||||
*/
|
||||
if (proc != NULL)
|
||||
if (proc == NULL)
|
||||
continue;
|
||||
|
||||
if (proc == MyProc)
|
||||
|
|
|
|||
Loading…
Reference in a new issue