mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 12:36:58 +00:00
(closes issue #10310)
Reported by: prashant_jois Patches: cdr_pgsql.patch uploaded by prashant (license 114) Finish the Postgresql connection after the log messages are printed so we don't access invalid memory. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@77540 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -86,9 +86,9 @@ static int pgsql_log(struct ast_cdr *cdr)
|
|||||||
connected = 1;
|
connected = 1;
|
||||||
} else {
|
} else {
|
||||||
pgerror = PQerrorMessage(conn);
|
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: 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);
|
||||||
|
PQfinish(conn);
|
||||||
conn = NULL;
|
conn = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -147,9 +147,9 @@ static int pgsql_log(struct ast_cdr *cdr)
|
|||||||
connected = 1;
|
connected = 1;
|
||||||
} else {
|
} else {
|
||||||
pgerror = PQerrorMessage(conn);
|
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: Unable to reconnect 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);
|
||||||
|
PQfinish(conn);
|
||||||
conn = NULL;
|
conn = NULL;
|
||||||
connected = 0;
|
connected = 0;
|
||||||
ast_mutex_unlock(&pgsql_lock);
|
ast_mutex_unlock(&pgsql_lock);
|
||||||
|
Reference in New Issue
Block a user