diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-11-18 12:32:34 +0100 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-11-18 12:32:34 +0100 |
commit | c2fef48bd32ac6fcd6c8664976a39424187f4872 (patch) | |
tree | d70696a03678fe8356e61bbdf9d586846ff892a5 /plugins | |
parent | 49dcad849e93551d90cd6298a576b67c4ad0c7ef (diff) | |
parent | 2f1c53dbfe5f1e4bd79adaf55a1aa48de8d83144 (diff) | |
download | rsyslog-c2fef48bd32ac6fcd6c8664976a39424187f4872.tar.gz rsyslog-c2fef48bd32ac6fcd6c8664976a39424187f4872.tar.xz rsyslog-c2fef48bd32ac6fcd6c8664976a39424187f4872.zip |
Merge branch 'v3-stable' into beta
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/ompgsql/ompgsql.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |