projects
/
psqlodbc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e36e94
)
Add comment about a known leak bug that needs fixing
author
Dave Page
<dpage@pgadmin.org>
Wed, 3 Aug 2005 07:27:30 +0000
(07:27 +0000)
committer
Dave Page
<dpage@pgadmin.org>
Wed, 3 Aug 2005 07:27:30 +0000
(07:27 +0000)
qresult.c
patch
|
blob
|
blame
|
history
diff --git
a/qresult.c
b/qresult.c
index 71221dab04e2da0f5f14ad5ba917a385ed6f9ea7..9911c63d19861b0e0b5dd5c5ee07580b10794ca3 100644
(file)
--- a/
qresult.c
+++ b/
qresult.c
@@
-162,6
+162,13
@@
QR_Destructor(QResultClass *self)
* case we need to, free it up. Also, close the cursor.
*/
#ifdef USE_LIBPQ
+
+ /*
+ * FIXME!!!
+ * This is *very wrong*, however, without it we get crashes when
+ * freeing backend_tuples as we should in QR_free_memory. We don't
+ * appear to leak here though thankfully!! DJP - 2005-08-02
+ */
if (self->backend_tuples)
{
free(self->backend_tuples);