pgsql: Fix three Python reference leaks in PLy_traceback(). - Mailing list pgsql-committers

From neilc@postgresql.org (Neil Conway)
Subject pgsql: Fix three Python reference leaks in PLy_traceback().
Date
Msg-id 20060220201037.884AB9DCB49@postgresql.org
Whole thread Raw
List pgsql-committers
Log Message:
-----------
Fix three Python reference leaks in PLy_traceback(). This would result
in leaking memory when invoking a PL/Python procedure that raises an
exception. Unfortunately this still leaks memory, but at least the
largest leak has been plugged.

This patch also fixes a reference counting mistake in PLy_modify_tuple()
for 8.0, 8.1 and HEAD: we don't actually own a reference to `platt', so
we shouldn't Py_DECREF() it.

Modified Files:
--------------
    pgsql/src/pl/plpython:
        plpython.c (r1.70 -> r1.71)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpython/plpython.c.diff?r1=1.70&r2=1.71)

pgsql-committers by date:

Previous
From: h-saito@pgfoundry.org (User H-saito)
Date:
Subject: psqlodbc - psqlodbc: CRLF line code is corrected to LF.
Next
From: neilc@postgresql.org (Neil Conway)
Date:
Subject: pgsql: Fix three Python reference leaks in PLy_traceback().