aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2016-03-04 12:11:30 -0500
committerRobert Haas <rhaas@postgresql.org>2016-03-04 12:23:41 -0500
commit58c1af4fd0952a9ac45b06824dcaee6f5fbdd737 (patch)
tree14030db5fdcc1248d9b756a81a98e0a5aea58b8f
parentb4895bf796d66245080cb37acaf2b396014b7225 (diff)
downloadpostgresql-58c1af4fd0952a9ac45b06824dcaee6f5fbdd737.tar.gz
postgresql-58c1af4fd0952a9ac45b06824dcaee6f5fbdd737.zip
Fix compile breakage due to 0315dfa8f4afa8390383119330ca0bf241be4ad4.
I wasn't careful enough when back-patching.
-rw-r--r--src/bin/psql/tab-complete.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c
index 88afdb75118..c4e36313f95 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)
{