Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit ce5bb92

Browse files
committed
This trivial patch fixes a small memory leak in pg_dump.
Neil Conway
1 parent 978c8c6 commit ce5bb92

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/bin/pg_dump/pg_dump.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
*
2424
* IDENTIFICATION
25-
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.279 2002/08/02 18:15:08 tgl Exp $
25+
* $Header: /cvsroot/pgsql/src/bin/pg_dump/pg_dump.c,v 1.280 2002/08/04 05:03:29 momjian Exp $
2626
*
2727
*-------------------------------------------------------------------------
2828
*/
@@ -5378,6 +5378,8 @@ dumpIndexes(Archive *fout, TableInfo *tblinfo, int numTables)
53785378
q->data, "",
53795379
NULL, NULL, NULL);
53805380

5381+
for (k = 0; k < indnkeys; k++)
5382+
free(indkeys[k]);
53815383
free(indkeys);
53825384
}
53835385
else

0 commit comments

Comments
 (0)