8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0546a2 commit 68319f9Copy full SHA for 68319f9
src/bin/psql/describe.c
@@ -3,7 +3,7 @@
3
*
4
* Copyright 2000 by PostgreSQL Global Development Group
5
6
- * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.29 2001/05/09 17:29:10 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/describe.c,v 1.30 2001/05/09 17:49:42 momjian Exp $
7
*/
8
#include "postgres_fe.h"
9
#include "describe.h"
@@ -981,6 +981,8 @@ describeUsers (const char *name)
981
"lll", &myopt, pset.queryFout);
982
983
/* clean up */
984
+ for (i = 0; i < PQntuples(res); i++)
985
+ free(cells[i * cols + 2]);
986
free(cells);
987
988
PQclear(res);
0 commit comments