Re: Patch to fix memory leak in fetch in Python interface.

From: Stephen Robert Norris <srn(at)commsecure(dot)com(dot)au>
To: pgsql-patches(at)postgresql(dot)org
Subject: Re: Patch to fix memory leak in fetch in Python interface.
Date: 2001-10-17 22:56:47
Message-ID: 1003359407.31480.6.camel@ws12
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

On Thu, 2001-10-18 at 08:46, Stephen Robert Norris wrote:
> This stops the interface from leaking the row tuples (and thus the
> results of every fetch).
>
> Stephen

Of course, I screwed up the patch. This one is actually correct, I
think:

--- /root/pgmodule.c Thu Oct 18 08:47:02 2001
+++ pgmodule.c Thu Oct 18 08:47:25 2001
@@ -566,6 +566,7 @@
}

PyList_Append(reslist, rowtuple);
+ Py_DECREF(rowtuple);
self->current_row++;
}

In response to

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Marko Kreen 2001-10-17 23:27:45 Re: [PATCHES] Ant configuration
Previous Message Stephen Robert Norris 2001-10-17 22:46:27 Patch to fix memory leak in fetch in Python interface.