1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Fix a memory leak in tuplestore_end(). Unlikely to be significant during

normal operation, but tuplestore_end() ought to do what it claims to do.
This commit is contained in:
Neil Conway
2007-08-02 17:48:52 +00:00
parent c441e26ee8
commit 494d6f809e

View File

@ -38,7 +38,7 @@
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/sort/tuplestore.c,v 1.33 2007/06/07 19:19:57 tgl Exp $ * $PostgreSQL: pgsql/src/backend/utils/sort/tuplestore.c,v 1.34 2007/08/02 17:48:52 neilc Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -322,6 +322,7 @@ tuplestore_end(Tuplestorestate *state)
pfree(state->memtuples[i]); pfree(state->memtuples[i]);
pfree(state->memtuples); pfree(state->memtuples);
} }
pfree(state);
} }
/* /*