Some minor refactoring, removed jemalloc and added the address sanitize

This commit is contained in:
WolverinDEV
2021-01-24 10:34:19 +01:00
parent 9784ce9351
commit ffd5b64177
6 changed files with 26 additions and 12 deletions
+8
View File
@@ -194,6 +194,7 @@ int main(int argc, char** argv) {
return 0;
}
#endif
CLIParser arguments(argc, argv);
SSL_load_error_strings();
OpenSSL_add_ssl_algorithms();
@@ -297,6 +298,13 @@ int main(int argc, char** argv) {
}
}
/*
{
void* ptr = malloc(1234);
free(ptr);
free(ptr);
}
*/
/*
std::string error;
if(!interaction::waitForAttach(error)){
cerr << "Rsult: " << error << endl;