Fix memory leak when deallocating prepared statement in postgres_fdw
The leak is minor, so no backpatch is done. Oversight in 21734d2. Reported-by: Tom Lane
This commit is contained in:
parent
0c3fc09fe3
commit
7b4c660466
@ -4063,6 +4063,7 @@ deallocate_query(PgFdwModifyState *fmstate)
|
|||||||
if (PQresultStatus(res) != PGRES_COMMAND_OK)
|
if (PQresultStatus(res) != PGRES_COMMAND_OK)
|
||||||
pgfdw_report_error(ERROR, res, fmstate->conn, true, sql);
|
pgfdw_report_error(ERROR, res, fmstate->conn, true, sql);
|
||||||
PQclear(res);
|
PQclear(res);
|
||||||
|
pfree(fmstate->p_name);
|
||||||
fmstate->p_name = NULL;
|
fmstate->p_name = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user