diff options
| author | Heikki Linnakangas | 2015-01-14 16:19:11 +0000 |
|---|---|---|
| committer | Heikki Linnakangas | 2015-01-14 16:19:11 +0000 |
| commit | 98768ccc3ca908c63fd10f1637d4a691f952b077 (patch) | |
| tree | becb075ad90715381140f6f9353bf5c1b5aa3e4e /statement.c | |
| parent | d7fd0d4aba0db33091a2bf140ce5efe73f2fbb7a (diff) | |
Silence compiler warnings about variables being used uninitialized.
Diffstat (limited to 'statement.c')
| -rw-r--r-- | statement.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/statement.c b/statement.c index e1a5ea8..106e968 100644 --- a/statement.c +++ b/statement.c @@ -2467,7 +2467,7 @@ libpq_bind_and_exec(StatementClass *stmt, const char *plan_name, PGresult *pgres = NULL; int pgresstatus; QResultClass *newres = NULL; - QResultClass *res; + QResultClass *res = NULL; char *cmdtag; char *rowcount; BOOL ret = FALSE; |
