aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2007-06-12 13:26:45 +0000
committerMagnus Hagander <magnus@hagander.net>2007-06-12 13:26:45 +0000
commit8c0d30881843c8da174e4919791ad46b74255be8 (patch)
treed04f002e1ee6a8f3a08e4dcbeee3d32d82b9b96d /src
parentee9d55cb527546d0d669d323246b2416d369341a (diff)
downloadpostgresql-8c0d30881843c8da174e4919791ad46b74255be8.tar.gz
postgresql-8c0d30881843c8da174e4919791ad46b74255be8.zip
Fix missing variable initialization.
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/pg_regress.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c
index 100adbe4ddf..8794e93a51b 100644
--- a/src/test/regress/pg_regress.c
+++ b/src/test/regress/pg_regress.c
@@ -11,7 +11,7 @@
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.33 2007/06/12 11:07:34 mha Exp $
+ * $PostgreSQL: pgsql/src/test/regress/pg_regress.c,v 1.34 2007/06/12 13:26:45 mha Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1554,9 +1554,9 @@ static void
run_single_test(const char *test, test_function tfunc)
{
PID_TYPE pid;
- _stringlist *resultfiles;
- _stringlist *expectfiles;
- _stringlist *tags;
+ _stringlist *resultfiles = NULL;
+ _stringlist *expectfiles = NULL;
+ _stringlist *tags = NULL;
_stringlist *rl, *el, *tl;
bool differ = false;