Clean postgresql handler at deinit. Signed-off-by: Eric Leblond <eric@xxxxxxxxx> --- output/pgsql/ulogd_output_PGSQL.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/output/pgsql/ulogd_output_PGSQL.c b/output/pgsql/ulogd_output_PGSQL.c index f246153..88fb765 100644 --- a/output/pgsql/ulogd_output_PGSQL.c +++ b/output/pgsql/ulogd_output_PGSQL.c @@ -214,7 +214,9 @@ static int close_db_pgsql(struct ulogd_pluginstance *upi) { struct pgsql_instance *pi = (struct pgsql_instance *) upi->private; - PQfinish(pi->dbh); + if (pi->dbh) + PQfinish(pi->dbh); + pi->dbh = NULL; return 0; } -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html