summaryrefslogtreecommitdiffstats
path: root/ommysql.c
diff options
context:
space:
mode:
Diffstat (limited to 'ommysql.c')
-rw-r--r--ommysql.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ommysql.c b/ommysql.c
index 19e980a0..07288833 100644
--- a/ommysql.c
+++ b/ommysql.c
@@ -79,6 +79,7 @@ static void closeMySQL(instanceData *pData)
assert(pData != NULL);
if(pData->f_hmysql != NULL) { /* just to be on the safe side... */
+ mysql_server_end();
mysql_close(pData->f_hmysql);
pData->f_hmysql = NULL;
}
@@ -229,7 +230,7 @@ CODE_STD_STRING_REQUESTparseSelectorAct(1)
/* ok, if we reach this point, we have something for us */
if((iRet = createInstance(&pData)) != RS_RET_OK)
- return iRet;
+ goto finalize_it;
p++; /* eat '>' '*/