mirror of
https://github.com/postgres/postgres.git
synced 2025-06-06 00:02:36 -04: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:
parent
6b46ec2707
commit
bc5ba26d6b
@ -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.64.2.2 2006/02/07 00:26:38 momjian Exp $
|
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-print.c,v 1.64.2.3 2006/04/19 16:15:34 tgl Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -751,8 +751,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 */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user