mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Fix memset() call, variables being passed in wrong order.
Pointed out by: wieck@sapserv.debis.de
This commit is contained in:
parent
da7f60c9d3
commit
f1c95ed41e
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.10 1996/10/13 04:49:57 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.11 1996/10/30 21:18:22 scrappy Exp $
|
||||
*
|
||||
* NOTES
|
||||
* this is the "main" module of the postgres backend and
|
||||
@ -1265,7 +1265,7 @@ PostgresMain(int argc, char *argv[])
|
||||
*/
|
||||
if (IsUnderPostmaster == false) {
|
||||
puts("\nPOSTGRES backend interactive interface");
|
||||
puts("$Revision: 1.10 $ $Date: 1996/10/13 04:49:57 $");
|
||||
puts("$Revision: 1.11 $ $Date: 1996/10/30 21:18:22 $");
|
||||
}
|
||||
|
||||
/* ----------------
|
||||
@ -1295,7 +1295,7 @@ PostgresMain(int argc, char *argv[])
|
||||
if (FD_ISSET(serverSock, &rmask)) {
|
||||
/* new connection pending on our well-known port's socket */
|
||||
newFE = (FrontEnd*) malloc (sizeof(FrontEnd));
|
||||
memset(newFE, sizeof(FrontEnd),0);
|
||||
memset(newFE, 0, sizeof(FrontEnd));
|
||||
newFE->fn_connected = false;
|
||||
newFE->fn_done = false;
|
||||
newPort = &(newFE->fn_port);
|
||||
|
Loading…
Reference in New Issue
Block a user