mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
This trivial patch fixes a small memory leak in pg_dump.
Neil Conway
This commit is contained in:
parent
978c8c6d2f
commit
ce5bb92346
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user