aboutsummaryrefslogtreecommitdiff
path: root/src/pl/plpython/plpython.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pl/plpython/plpython.c')
-rw-r--r--src/pl/plpython/plpython.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c
index 43c7fce2e5f..7db8369c61f 100644
--- a/src/pl/plpython/plpython.c
+++ b/src/pl/plpython/plpython.c
@@ -1,7 +1,7 @@
/**********************************************************************
* plpython.c - python as a procedural language for PostgreSQL
*
- * $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.122 2009/06/11 14:49:14 momjian Exp $
+ * $PostgreSQL: pgsql/src/pl/plpython/plpython.c,v 1.122.2.1 2009/11/03 08:59:16 petere Exp $
*
*********************************************************************
*/
@@ -2893,9 +2893,9 @@ PLy_fatal(PyObject *self, PyObject *args)
static PyObject *
PLy_output(volatile int level, PyObject *self, PyObject *args)
{
- PyObject *so;
+ PyObject *volatile so;
char *volatile sv;
- MemoryContext oldcontext;
+ volatile MemoryContext oldcontext;
so = PyObject_Str(args);
if (so == NULL || ((sv = PyString_AsString(so)) == NULL))
@@ -2914,6 +2914,10 @@ PLy_output(volatile int level, PyObject *self, PyObject *args)
MemoryContextSwitchTo(oldcontext);
PLy_error_in_progress = CopyErrorData();
FlushErrorState();
+
+ PyErr_SetString(PLy_exc_error, sv);
+ /* Note: If sv came from PyString_AsString(), it points into
+ * storage owned by so. So free so after using sv. */
Py_XDECREF(so);
/*
@@ -2921,7 +2925,6 @@ PLy_output(volatile int level, PyObject *self, PyObject *args)
* control passes back to PLy_procedure_call, we check for PG
* exceptions and re-throw the error.
*/
- PyErr_SetString(PLy_exc_error, sv);
return NULL;
}
PG_END_TRY();