pgsql: Fix three Python reference leaks in PLy_traceback().

From: neilc(at)postgresql(dot)org (Neil Conway)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix three Python reference leaks in PLy_traceback().
Date: 2006-02-20 20:10:49
Message-ID: 20060220201049.5D2F19DCBC3@postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: 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.

Tags:
----
REL7_3_STABLE

Modified Files:
--------------
pgsql/src/pl/plpython:
plpython.c (r1.26.2.6 -> r1.26.2.7)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpython/plpython.c.diff?r1=1.26.2.6&r2=1.26.2.7)

Browse pgsql-committers by date

  From Date Subject
Next Message James William Pye 2006-02-20 20:33:18 python - fe: Add DB-API 2.0 interface module.
Previous Message Neil Conway 2006-02-20 20:10:46 pgsql: Fix three Python reference leaks in PLy_traceback().