diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2008-05-13 00:14:11 +0000 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2008-05-13 00:14:11 +0000 |
commit | e6a64bd3b6ec4646e4d3bc06692af76bca4967ab (patch) | |
tree | cd41665e5de04b431c4cf069bdf7ed0262922296 /src/bin/psql/print.c | |
parent | 1e9199e84c26eca7bdd49b47c1c627d4f3a60747 (diff) | |
download | postgresql-e6a64bd3b6ec4646e4d3bc06692af76bca4967ab.tar.gz postgresql-e6a64bd3b6ec4646e4d3bc06692af76bca4967ab.zip |
Fix a bug in the previous patch, which caused the title pointer to be used
before it was actually set.
Diffstat (limited to 'src/bin/psql/print.c')
-rw-r--r-- | src/bin/psql/print.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bin/psql/print.c b/src/bin/psql/print.c index 2dcf964a8a9..f27c1e1f488 100644 --- a/src/bin/psql/print.c +++ b/src/bin/psql/print.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2008, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.100 2008/05/12 22:59:58 alvherre Exp $ + * $PostgreSQL: pgsql/src/bin/psql/print.c,v 1.101 2008/05/13 00:14:11 alvherre Exp $ */ #include "postgres_fe.h" @@ -1918,8 +1918,10 @@ ClosePager(FILE *pagerpipe) /* * Initialise a table contents struct. + * Must be called before any other printTable method is used. * - * Must be called before any other printTable method is used. + * The title is not duplicated; the caller must ensure that the buffer + * is available for the lifetime of the printTableContent struct. * * If you call this, you must call printTableCleanup once you're done with the * table. |