From: Alvaro Herrera Date: Fri, 30 Jun 2006 16:55:41 +0000 (+0000) Subject: Fix memory leak introduced in the prior commit, detected by Tom Lane. X-Git-Tag: REL8_1_5~60 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8728d4aba91a5621bb4eb869d2f1050d63de3b9d;p=thirdparty%2Fpostgresql.git Fix memory leak introduced in the prior commit, detected by Tom Lane. --- diff --git a/src/bin/psql/common.c b/src/bin/psql/common.c index 0699bc00704..1324e557b03 100644 --- a/src/bin/psql/common.c +++ b/src/bin/psql/common.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.110.2.2 2006/06/30 15:06:16 alvherre Exp $ + * $PostgreSQL: pgsql/src/bin/psql/common.c,v 1.110.2.3 2006/06/30 16:55:41 alvherre Exp $ */ #include "postgres_fe.h" #include "common.h" @@ -1102,6 +1102,8 @@ SendQuery(const char *query) ResetCancelConn(); return false; } + + PQclear(svptres); } PQclear(results);