]> granicus.if.org Git - postgresql/commitdiff
Add PQclear() calls, for completeness (exits shortly anyway).
authorBruce Momjian <bruce@momjian.us>
Mon, 29 May 2006 19:52:46 +0000 (19:52 +0000)
committerBruce Momjian <bruce@momjian.us>
Mon, 29 May 2006 19:52:46 +0000 (19:52 +0000)
src/bin/scripts/createdb.c
src/bin/scripts/createlang.c
src/bin/scripts/createuser.c
src/bin/scripts/dropdb.c
src/bin/scripts/droplang.c
src/bin/scripts/dropuser.c

index ec022b12036bb04b7a9e16db435e311033224c16..f68da36498cc7a7e4a17293820394727bfa300c9 100644 (file)
@@ -5,7 +5,7 @@
  * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/bin/scripts/createdb.c,v 1.18 2006/05/28 21:13:54 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/scripts/createdb.c,v 1.19 2006/05/29 19:52:46 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -201,6 +201,7 @@ main(int argc, char *argv[])
                        exit(1);
                }
 
+               PQclear(result);
                PQfinish(conn);
                if (!quiet)
                {
index b8d823f4fc412cb031aac9865b380b3293899e60..0a299910bd32b0d3be738fc86eb6dd51f6cd368a 100644 (file)
@@ -5,7 +5,7 @@
  * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/bin/scripts/createlang.c,v 1.22 2006/03/05 15:58:52 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/scripts/createlang.c,v 1.23 2006/05/29 19:52:46 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -191,6 +191,7 @@ main(int argc, char *argv[])
                exit(1);
        }
 
+       PQclear(result);
        PQfinish(conn);
        exit(0);
 }
index e4afdfb40ba78936c481f12aec88c102d60a8e86..bf618eea186c078f4fb0ffb351ebee8158eab151 100644 (file)
@@ -5,7 +5,7 @@
  * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/bin/scripts/createuser.c,v 1.29 2006/05/28 21:13:54 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/scripts/createuser.c,v 1.30 2006/05/29 19:52:46 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -302,6 +302,7 @@ main(int argc, char *argv[])
                exit(1);
        }
 
+       PQclear(result);
        PQfinish(conn);
        if (!quiet)
        {
index 2908e8931896e72372d84492a86cb9a7c4752a00..8769dcb94cc83a82fdcbb129fadb8c57843de0b4 100644 (file)
@@ -5,7 +5,7 @@
  * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/bin/scripts/dropdb.c,v 1.16 2006/03/05 15:58:52 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/scripts/dropdb.c,v 1.17 2006/05/29 19:52:46 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -131,6 +131,7 @@ main(int argc, char *argv[])
                exit(1);
        }
 
+       PQclear(result);
        PQfinish(conn);
        if (!quiet)
        {
index 998d743797077fbee7bbf14bbfb654a237e8f9b8..1465e504f61d3c8f35c7750777068e6657bff706 100644 (file)
@@ -5,7 +5,7 @@
  * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/bin/scripts/droplang.c,v 1.19 2006/03/05 15:58:52 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/scripts/droplang.c,v 1.20 2006/05/29 19:52:46 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -309,6 +309,7 @@ main(int argc, char *argv[])
                exit(1);
        }
 
+       PQclear(result);
        PQfinish(conn);
        exit(0);
 }
index 49e63cbb28538895d3eeeb20c649e273fc09b31e..5d083caef5346e2568df00d956cbb378320b6c76 100644 (file)
@@ -5,7 +5,7 @@
  * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/bin/scripts/dropuser.c,v 1.17 2006/03/05 15:58:52 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/scripts/dropuser.c,v 1.18 2006/05/29 19:52:46 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -130,6 +130,7 @@ main(int argc, char *argv[])
                exit(1);
        }
 
+       PQclear(result);
        PQfinish(conn);
        if (!quiet)
        {