diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-03-04 12:11:30 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-03-04 12:15:36 -0500 |
commit | fbee403237d543a21adc885d37b70b5d91fc64d3 (patch) | |
tree | 4c7b184da5255fe495e2f906755fd60d5bf6699c /src/bin/psql/tab-complete.c | |
parent | 54139ac22f274940e5d5477594cd03b7988ca7be (diff) |
Fix compile breakage due to 0315dfa8f4afa8390383119330ca0bf241be4ad4.
I wasn't careful enough when back-patching.
Diffstat (limited to 'src/bin/psql/tab-complete.c')
-rw-r--r-- | src/bin/psql/tab-complete.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index ce492e3f2ed..9e65451b38a 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -3552,8 +3552,8 @@ _complete_from_query(int is_schema_query, const char *text, int state) result = NULL; /* Set up suitably-escaped copies of textual inputs */ - e_text = pg_malloc(string_length * 2 + 1); - PQescapeString(e_text, text, string_length); + e_text = pg_malloc(byte_length * 2 + 1); + PQescapeString(e_text, text, byte_length); if (completion_info_charp) { |