This trivial patch fixes a small memory leak in pg_dump.

Neil Conway
This commit is contained in:
Bruce Momjian 2002-08-04 05:03:29 +00:00
parent 978c8c6d2f
commit ce5bb92346
1 changed files with 3 additions and 1 deletions

View File

@ -22,7 +22,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.279 2002/08/02 18:15:08 tgl Exp $
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.280 2002/08/04 05:03:29 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -5378,6 +5378,8 @@ dumpIndexes(Archive *fout, TableInfo *tblinfo, int numTables)
q->data, "",
NULL, NULL, NULL);
for (k = 0; k < indnkeys; k++)
free(indkeys[k]);
free(indkeys);
}
else