Fix trivial memory leaks

Fixed trivial memory leaks detected by ASAN when running internal test
suite.
This commit is contained in:
Markus Mäkelä
2017-12-27 11:56:39 +02:00
parent 26b2a4b15d
commit 8ef681d8cd
3 changed files with 6 additions and 1 deletions

View File

@ -845,5 +845,6 @@ int main(int argc, char **argv)
mxs_log_finish();
MXS_FREE(inst);
MXS_FREE(roptions);
return 0;
}