summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Smrž <roman.smrz@seznam.cz>2021-08-19 22:39:14 +0200
committerRoman Smrž <roman.smrz@seznam.cz>2021-08-19 22:39:14 +0200
commit293d96b86d84928ae2106d11c0e004a01cc6f5dc (patch)
tree27bfaa8552b82ecb513791c87c022eedb26b80b3
parent52323b89126bef9264801bce37e85fee3a41a0b6 (diff)
Test tool: stop server before exiting main
Makes sure all related data and threads are properly cleared before all the other static stuff starts to be destroyed.
-rw-r--r--src/main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index b8cae3e..bca802b 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -164,5 +164,6 @@ int main(int argc, char * argv[])
}
free(line);
+ server.reset();
return 0;
}