mirror of
https://github.com/postgres/postgres.git
synced 2025-05-15 19:15:29 +03:00
Fix bug introduced in recent patch to make plpython cope with OUT arguments:
the proc->argnames array has to be initialized to zero immediately on creation, since the error recovery path will try to free its elements.
This commit is contained in:
parent
725ba51f2c
commit
70b6e99e40
@ -1,7 +1,7 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
* plpython.c - python as a procedural language for PostgreSQL
|
* plpython.c - python as a procedural language for PostgreSQL
|
||||||
*
|
*
|
||||||
* $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.115 2008/11/02 01:45:28 tgl Exp $
|
* $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.116 2008/11/04 15:16:48 tgl Exp $
|
||||||
*
|
*
|
||||||
*********************************************************************
|
*********************************************************************
|
||||||
*/
|
*/
|
||||||
@ -1282,7 +1282,7 @@ PLy_procedure_create(HeapTuple procTup, Oid tgreloid, char *key)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
proc->argnames = (char **) PLy_malloc(sizeof(char *) * proc->nargs);
|
proc->argnames = (char **) PLy_malloc0(sizeof(char *) * proc->nargs);
|
||||||
for (i = pos = 0; i < total; i++)
|
for (i = pos = 0; i < total; i++)
|
||||||
{
|
{
|
||||||
HeapTuple argTypeTup;
|
HeapTuple argTypeTup;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user