Nullify mysql handler at deinit. Signed-off-by: Eric Leblond <eric@xxxxxxxxx> --- output/mysql/ulogd_output_MYSQL.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/output/mysql/ulogd_output_MYSQL.c b/output/mysql/ulogd_output_MYSQL.c index 72c080e..0a1ebfc 100644 --- a/output/mysql/ulogd_output_MYSQL.c +++ b/output/mysql/ulogd_output_MYSQL.c @@ -162,7 +162,9 @@ static int get_columns_mysql(struct ulogd_pluginstance *upi) static int close_db_mysql(struct ulogd_pluginstance *upi) { struct mysql_instance *mi = (struct mysql_instance *) upi->private; - mysql_close(mi->dbh); + if (mi->dbh) + mysql_close(mi->dbh); + mi->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