]> git.ipfire.org Git - thirdparty/postgresql.git/commit
psql: Fix memory leak with repeated calls of \bind
authorMichael Paquier <michael@paquier.xyz>
Thu, 19 Sep 2024 07:25:07 +0000 (16:25 +0900)
committerMichael Paquier <michael@paquier.xyz>
Thu, 19 Sep 2024 07:25:07 +0000 (16:25 +0900)
commitb0ae6db2088bbd1d16733b359c9c300735e9c21e
tree0750d102ee960ff53b674517c0a4746edc63d417
parent19b389c60871cd14b07dfb244a519d8cb83988cc
psql: Fix memory leak with repeated calls of \bind

Calling \bind repeatedly would cause the memory allocated for the list
of bind parameters to be leaked after each call, as the list is reset
when beginning a single call.

This issue is fixed by making the cleanup of the bind parameter list
more aggressive, refactoring it into a single routine called after
processing a query and before running an individual \bind.

HEAD required more surgery and has been fixed by 87eeadaea143.  Issue
introduced by 5b66de3433e2.

Reported-by: Anthonin Bonnefoy
Discussion: https://postgr.es/m/2e5b89af-a351-ff0a-000c-037ac28314ab@gmail.com
Backpatch-through: 16
src/bin/psql/command.c
src/bin/psql/common.c
src/bin/psql/common.h