summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-11-18 12:32:21 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2008-11-18 12:32:21 +0100
commit2f1c53dbfe5f1e4bd79adaf55a1aa48de8d83144 (patch)
treeba6f5b6f310683d98a390908dc9965ecb1e86137
parent4cfbf894fd0caebaf65e1b7ffcb5725a530cf67d (diff)
parent48319cd31f3d15f1417d4ebd8003d93978ad36a9 (diff)
downloadrsyslog-2f1c53dbfe5f1e4bd79adaf55a1aa48de8d83144.tar.gz
rsyslog-2f1c53dbfe5f1e4bd79adaf55a1aa48de8d83144.tar.xz
rsyslog-2f1c53dbfe5f1e4bd79adaf55a1aa48de8d83144.zip
Merge branch 'v2-stable' into v3-stable
Conflicts: ChangeLog
-rw-r--r--ChangeLog4
-rw-r--r--plugins/ompgsql/ompgsql.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 84617825..82bccb14 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -857,6 +857,10 @@ Version 3.10.0 (rgerhards), 2008-01-07
- much cleaner code due to new objects and removal of single-threading
mode
---------------------------------------------------------------------------
+Version 2.0.7 V2-STABLE (rgerhards), 2008-??-??
+- bugfix: memory leak in ompgsql
+ Thanks to Ken for providing the patch
+---------------------------------------------------------------------------
Version 2.0.6 V2-STABLE (rgerhards), 2008-??-??
- bugfix: memory leaks in rsyslogd, primarily in singlethread mode
Thanks to Frederico Nunez for providing the fix
diff --git a/plugins/ompgsql/ompgsql.c b/plugins/ompgsql/ompgsql.c
index f8685672..7658f036 100644
--- a/plugins/ompgsql/ompgsql.c
+++ b/plugins/ompgsql/ompgsql.c
@@ -167,12 +167,12 @@ rsRetVal writePgSQL(uchar *psz, instanceData *pData)
dbgprintf("writePgSQL: %s", psz);
/* try insert */
- PQexec(pData->f_hpgsql, (char*)psz);
+ PQclear(PQexec(pData->f_hpgsql, (char*)psz));
if(PQstatus(pData->f_hpgsql) != CONNECTION_OK) {
/* error occured, try to re-init connection and retry */
closePgSQL(pData); /* close the current handle */
CHKiRet(initPgSQL(pData, 0)); /* try to re-open */
- PQexec(pData->f_hpgsql, (char*)psz);
+ PQclear(PQexec(pData->f_hpgsql, (char*)psz));
if(PQstatus(pData->f_hpgsql) != CONNECTION_OK) { /* re-try insert */
/* we failed, giving up for now */
reportDBError(pData, 0);