diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2001-11-02 17:00:18 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2001-11-02 17:00:18 +0000 |
commit | 6babf6eab7a09127f0425c168a9e1ddffe5b4808 (patch) | |
tree | b50c070af93d13f76080483de29c3f5779379542 | |
parent | 7d05310828aae801fd1483e638771a4034cbecd7 (diff) | |
download | postgresql-6babf6eab7a09127f0425c168a9e1ddffe5b4808.tar.gz postgresql-6babf6eab7a09127f0425c168a9e1ddffe5b4808.zip |
Suppress compiler warning (only seen in MULTIBYTE case).
-rw-r--r-- | src/interfaces/odbc/info.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/odbc/info.c b/src/interfaces/odbc/info.c index 6ffc7cc51b0..09439b2a5ea 100644 --- a/src/interfaces/odbc/info.c +++ b/src/interfaces/odbc/info.c @@ -3006,6 +3006,7 @@ PGAPI_ForeignKeys( make_string(szFkTableName, cbFkTableName, fk_table_needed); #ifdef MULTIBYTE + pkey_text = fkey_text = pkt_text = fkt_text = NULL; pkey_alloced = fkey_alloced = pkt_alloced = fkt_alloced = FALSE; conn = SC_get_conn(stmt); #endif /* MULTIBYTE */ |