From 58c1af4fd0952a9ac45b06824dcaee6f5fbdd737 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Fri, 4 Mar 2016 12:11:30 -0500 Subject: [PATCH] Fix compile breakage due to 0315dfa8f4afa8390383119330ca0bf241be4ad4. I wasn't careful enough when back-patching. --- src/bin/psql/tab-complete.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 88afdb7511..c4e36313f9 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -3063,8 +3063,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) { -- 2.40.0