[svn-commits] qwell: trunk r70613 - in /trunk: ./ cdr/cdr_pgsql.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Wed Jun 20 18:33:49 CDT 2007
Author: qwell
Date: Wed Jun 20 18:33:49 2007
New Revision: 70613
URL: http://svn.digium.com/view/asterisk?view=rev&rev=70613
Log:
Merged revisions 70612 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r70612 | qwell | 2007-06-20 18:32:39 -0500 (Wed, 20 Jun 2007) | 4 lines
Fix some potential memory leaks in cdr_pgsql.
Issue 10020, patch by me, with credit to prashant_jois for pointing out the problem.
........
Modified:
trunk/ (props changed)
trunk/cdr/cdr_pgsql.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/cdr/cdr_pgsql.c
URL: http://svn.digium.com/view/asterisk/trunk/cdr/cdr_pgsql.c?view=diff&rev=70613&r1=70612&r2=70613
==============================================================================
--- trunk/cdr/cdr_pgsql.c (original)
+++ trunk/cdr/cdr_pgsql.c Wed Jun 20 18:33:49 2007
@@ -87,8 +87,9 @@
connected = 1;
} else {
pgerror = PQerrorMessage(conn);
+ PQfinish(conn);
ast_log(LOG_ERROR, "cdr_pgsql: Unable to connect to database server %s. Calls will not be logged!\n", pghostname);
- ast_log(LOG_ERROR, "cdr_pgsql: Reason: %s\n", pgerror);
+ ast_log(LOG_ERROR, "cdr_pgsql: Reason: %s\n", pgerror);
}
}
@@ -144,6 +145,7 @@
connected = 1;
} else {
pgerror = PQerrorMessage(conn);
+ PQfinish(conn);
ast_log(LOG_ERROR, "cdr_pgsql: Unable to reconnect to database server %s. Calls will not be logged!\n", pghostname);
ast_log(LOG_ERROR, "cdr_pgsql: Reason: %s\n", pgerror);
connected = 0;
@@ -161,6 +163,7 @@
if (PQstatus(conn) == CONNECTION_OK) {
ast_log(LOG_ERROR, "cdr_pgsql: Connection reestablished.\n");
connected = 1;
+ PQclear(result);
result = PQexec(conn, sqlcmd);
if (PQresultStatus(result) != PGRES_COMMAND_OK) {
pgerror = PQresultErrorMessage(result);
More information about the svn-commits
mailing list