From 38057365cb512f95a705c6a83b4269420cfcf63c Mon Sep 17 00:00:00 2001 From: OpenGnSys Support Team Date: Wed, 29 Apr 2020 13:07:53 +0200 Subject: #941 missing og_dbi_close --- sources/ogAdmServer.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sources/ogAdmServer.c') diff --git a/sources/ogAdmServer.c b/sources/ogAdmServer.c index a3580ef..09ad7e6 100644 --- a/sources/ogAdmServer.c +++ b/sources/ogAdmServer.c @@ -3737,6 +3737,7 @@ static int og_dbi_schedule_get(void) dbi_conn_error(dbi->conn, &msglog); syslog(LOG_ERR, "failed to query database (%s:%d) %s\n", __func__, __LINE__, msglog); + og_dbi_close(dbi); return -1; } @@ -3757,6 +3758,7 @@ static int og_dbi_schedule_get(void) } dbi_result_free(result); + og_dbi_close(dbi); return 0; } @@ -4720,12 +4722,14 @@ static int og_dbi_get_computer_info(struct og_computer *computer, dbi_conn_error(dbi->conn, &msglog); syslog(LOG_ERR, "failed to query database (%s:%d) %s\n", __func__, __LINE__, msglog); + og_dbi_close(dbi); return -1; } if (!dbi_result_next_row(result)) { syslog(LOG_ERR, "client does not exist in database (%s:%d)\n", __func__, __LINE__); dbi_result_free(result); + og_dbi_close(dbi); return -1; } @@ -5282,6 +5286,7 @@ static int og_dbi_update_action(struct og_client *cli, bool success) dbi_conn_error(dbi->conn, &msglog); syslog(LOG_ERR, "failed to query database (%s:%d) %s\n", __func__, __LINE__, msglog); + og_dbi_close(dbi); return -1; } cli->last_cmd_id = 0; -- cgit v1.2.3-18-g5258