1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-18 12:22:09 +03:00

Fix ancient memory leak in PQprintTuples(); our code no longer uses this

routine, but perhaps some applications do.  Found by Martijn van Oosterhout
using Coverity.
This commit is contained in:
Tom Lane
2006-04-19 16:15:41 +00:00
parent f8511d4cc9
commit 8f7fce2fd6

View File

@@ -10,7 +10,7 @@
* didn't really belong there. * didn't really belong there.
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.58 2004/12/31 22:03:50 pgsql Exp $ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.58.4.1 2006/04/19 16:15:41 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@@ -745,8 +745,10 @@ PQprintTuples(const PGresult *res,
fprintf(fout, "|\n%s\n", tborder); fprintf(fout, "|\n%s\n", tborder);
} }
} }
}
if (tborder)
free(tborder);
}
/* simply send out max-length number of filler characters to fp */ /* simply send out max-length number of filler characters to fp */