mirror of
https://github.com/postgres/postgres.git
synced 2026-02-10 14:23:26 -05:00
Fixed a missed change from Carsten Heyl <heyl@nads.de>
This commit is contained in:
parent
de466eb8f4
commit
3dc0c8e4e5
1 changed files with 2 additions and 2 deletions
|
|
@ -10,7 +10,7 @@
|
|||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.10 1996/10/04 20:32:07 scrappy Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.11 1996/10/07 07:18:34 scrappy Exp $
|
||||
*
|
||||
* NOTES
|
||||
*
|
||||
|
|
@ -541,7 +541,7 @@ ServerLoop(void)
|
|||
}
|
||||
FD_CLR(port->sock, &basemask);
|
||||
StreamClose(port->sock);
|
||||
next = DLGetPred(curr);
|
||||
next = DLGetSucc(curr);
|
||||
DLRemove(curr);
|
||||
DLFreeElem(curr);
|
||||
curr = next;
|
||||
|
|
|
|||
Loading…
Reference in a new issue