diff options
author | Bruce Momjian <bruce@momjian.us> | 2014-02-15 00:09:24 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2014-02-15 00:09:40 -0500 |
commit | a0d8947acb8b4300cc771b0d5a2f53e4e5148a40 (patch) | |
tree | 5a00e041e07d942830d5a1a9e47c24ce58a4e3a0 /src/bin/psql/command.c | |
parent | 1c5143a0b58259df723ed2473ae11d45d08a8b24 (diff) |
psql: Add C comment about gset_prefix being freed later
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r-- | src/bin/psql/command.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c index 764534a3ae0..6a963b5d6fc 100644 --- a/src/bin/psql/command.c +++ b/src/bin/psql/command.c @@ -764,6 +764,7 @@ exec_command(const char *cmd, /* we must set a non-NULL prefix to trigger storing */ pset.gset_prefix = pg_strdup(""); } + /* gset_prefix is freed later */ status = PSQL_CMD_SEND; } |