Skip to content

Commit 1054d35

Browse files
committed
Missed an else from Bryan's patch...
1 parent 394f799 commit 1054d35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/libpq/fe-connect.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.4.2.2 1996/08/19 13:40:26 scrappy Exp $
10+
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.4.2.3 1996/08/19 19:28:17 scrappy Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -75,7 +75,7 @@ PQsetdb(char *pghost, char* pgport, char* pgoptions, char* pgtty, char* dbName)
7575
fprintf(stderr,
7676
"FATAL: PQsetdb() -- unable to allocate memory for a PGconn");
7777
return (PGconn*)NULL;
78-
}
78+
} else {
7979
conn->Pfout = NULL;
8080
conn->Pfin = NULL;
8181
conn->Pfdebug = NULL;

0 commit comments

Comments
 (0)