Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2011-01-18 22:10:19 +0000
committerPeter Eisentraut2011-01-18 22:10:19 +0000
commit847e8c7783e877bbdc6a89250ade7d264eee5593 (patch)
treec9db87aedbd98a23d28d360d797d5ed115d4331b /src/pl/plpython/plpython.c
parent719461b7a28c04a84b0fb1e5faa9b3cb5ee66605 (diff)
Free plan values in the PLyPlanObject dealloc function
Jan UrbaƄski
Diffstat (limited to 'src/pl/plpython/plpython.c')
-rw-r--r--src/pl/plpython/plpython.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c
index 99424d35133..e7328ae062f 100644
--- a/src/pl/plpython/plpython.c
+++ b/src/pl/plpython/plpython.c
@@ -2681,6 +2681,7 @@ PLy_plan_new(void)
ob->plan = NULL;
ob->nargs = 0;
ob->types = NULL;
+ ob->values = NULL;
ob->args = NULL;
return (PyObject *) ob;
@@ -2696,6 +2697,8 @@ PLy_plan_dealloc(PyObject *arg)
SPI_freeplan(ob->plan);
if (ob->types)
PLy_free(ob->types);
+ if (ob->values)
+ PLy_free(ob->values);
if (ob->args)
{
int i;