8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 719461b commit 847e8c7Copy full SHA for 847e8c7
src/pl/plpython/plpython.c
@@ -2681,6 +2681,7 @@ PLy_plan_new(void)
2681
ob->plan = NULL;
2682
ob->nargs = 0;
2683
ob->types = NULL;
2684
+ ob->values = NULL;
2685
ob->args = NULL;
2686
2687
return (PyObject *) ob;
@@ -2696,6 +2697,8 @@ PLy_plan_dealloc(PyObject *arg)
2696
2697
SPI_freeplan(ob->plan);
2698
if (ob->types)
2699
PLy_free(ob->types);
2700
+ if (ob->values)
2701
+ PLy_free(ob->values);
2702
if (ob->args)
2703
{
2704
int i;
0 commit comments