MXS-1830 Remove erroneous free

The libdir is set elsewhere as well, which causes the set
buffer to be freed. Consequently it cannot be freed.
This commit is contained in:
Johan Wikman 2018-04-26 15:21:16 +03:00
parent 9cf44b3092
commit 08230ef24c
2 changed files with 0 additions and 4 deletions

View File

@ -54,7 +54,5 @@ int main(int argc, char* argv[])
TestLRUStorage test(&cout);
int rv = test.run(argc, argv);
// TODO: Remove this once globally allocated memory is freed
MXS_FREE(libdir);
return rv;
}

View File

@ -54,7 +54,5 @@ int main(int argc, char* argv[])
TestRawStorage test(&cout);
int rv = test.run(argc, argv);
// TODO: Remove this once globally allocated memory is freed
MXS_FREE(libdir);
return rv;
}