]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Fix obscure segfault condition in PL/Python
authorPeter Eisentraut <peter_e@gmx.net>
Tue, 3 Nov 2009 08:59:16 +0000 (08:59 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Tue, 3 Nov 2009 08:59:16 +0000 (08:59 +0000)
commit59052a5122dbc56e5dfd615bb199a07ffb7bb03e
treee2ff052b6f76e14db20fcd32ac8a0ae751669225
parent01adc8afd55f3ae831e32b6ce19f7c61f4baac28
Fix obscure segfault condition in PL/Python

In PLy_output(), when the elog() call in the TRY branch throws an exception
(this can happen when a statement timeout kicks in, for example), the
PyErr_SetString() call in the CATCH branch can cause a segfault, because the
Py_XDECREF(so) call before it releases memory that is still used by the sv
variable that PyErr_SetString() uses as argument, because sv points into
memory owned by so.

Backpatched back to 8.0, where this code was introduced.

I also threw in a couple of volatile declarations for variables that are used
before and after the TRY.  I don't think they caused the crash that I
observed, but they could become issues.
src/pl/plpython/plpython.c