File tree 6 files changed +12
-6
lines changed
6 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 5
5
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
6
6
* Portions Copyright (c) 1994, Regents of the University of California
7
7
*
8
- * $PostgreSQL: pgsql/src/bin/scripts/createdb.c,v 1.18 2006/05/28 21:13:54 tgl Exp $
8
+ * $PostgreSQL: pgsql/src/bin/scripts/createdb.c,v 1.19 2006/05/29 19:52:46 momjian Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
@@ -201,6 +201,7 @@ main(int argc, char *argv[])
201
201
exit (1 );
202
202
}
203
203
204
+ PQclear (result );
204
205
PQfinish (conn );
205
206
if (!quiet )
206
207
{
Original file line number Diff line number Diff line change 5
5
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
6
6
* Portions Copyright (c) 1994, Regents of the University of California
7
7
*
8
- * $PostgreSQL: pgsql/src/bin/scripts/createlang.c,v 1.22 2006/03/05 15:58:52 momjian Exp $
8
+ * $PostgreSQL: pgsql/src/bin/scripts/createlang.c,v 1.23 2006/05/29 19:52:46 momjian Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
@@ -191,6 +191,7 @@ main(int argc, char *argv[])
191
191
exit (1 );
192
192
}
193
193
194
+ PQclear (result );
194
195
PQfinish (conn );
195
196
exit (0 );
196
197
}
Original file line number Diff line number Diff line change 5
5
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
6
6
* Portions Copyright (c) 1994, Regents of the University of California
7
7
*
8
- * $PostgreSQL: pgsql/src/bin/scripts/createuser.c,v 1.29 2006/05/28 21:13:54 tgl Exp $
8
+ * $PostgreSQL: pgsql/src/bin/scripts/createuser.c,v 1.30 2006/05/29 19:52:46 momjian Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
@@ -302,6 +302,7 @@ main(int argc, char *argv[])
302
302
exit (1 );
303
303
}
304
304
305
+ PQclear (result );
305
306
PQfinish (conn );
306
307
if (!quiet )
307
308
{
Original file line number Diff line number Diff line change 5
5
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
6
6
* Portions Copyright (c) 1994, Regents of the University of California
7
7
*
8
- * $PostgreSQL: pgsql/src/bin/scripts/dropdb.c,v 1.16 2006/03/05 15:58:52 momjian Exp $
8
+ * $PostgreSQL: pgsql/src/bin/scripts/dropdb.c,v 1.17 2006/05/29 19:52:46 momjian Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
@@ -131,6 +131,7 @@ main(int argc, char *argv[])
131
131
exit (1 );
132
132
}
133
133
134
+ PQclear (result );
134
135
PQfinish (conn );
135
136
if (!quiet )
136
137
{
Original file line number Diff line number Diff line change 5
5
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
6
6
* Portions Copyright (c) 1994, Regents of the University of California
7
7
*
8
- * $PostgreSQL: pgsql/src/bin/scripts/droplang.c,v 1.19 2006/03/05 15:58:52 momjian Exp $
8
+ * $PostgreSQL: pgsql/src/bin/scripts/droplang.c,v 1.20 2006/05/29 19:52:46 momjian Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
@@ -309,6 +309,7 @@ main(int argc, char *argv[])
309
309
exit (1 );
310
310
}
311
311
312
+ PQclear (result );
312
313
PQfinish (conn );
313
314
exit (0 );
314
315
}
Original file line number Diff line number Diff line change 5
5
* Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
6
6
* Portions Copyright (c) 1994, Regents of the University of California
7
7
*
8
- * $PostgreSQL: pgsql/src/bin/scripts/dropuser.c,v 1.17 2006/03/05 15:58:52 momjian Exp $
8
+ * $PostgreSQL: pgsql/src/bin/scripts/dropuser.c,v 1.18 2006/05/29 19:52:46 momjian Exp $
9
9
*
10
10
*-------------------------------------------------------------------------
11
11
*/
@@ -130,6 +130,7 @@ main(int argc, char *argv[])
130
130
exit (1 );
131
131
}
132
132
133
+ PQclear (result );
133
134
PQfinish (conn );
134
135
if (!quiet )
135
136
{
You can’t perform that action at this time.
0 commit comments