From 492705a24b14a602c77cd5eb7a7c0593d4075442 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20G=C3=BCndling?= Date: Thu, 14 Nov 2024 17:09:07 +0100 Subject: [PATCH] properly shutdown google::Protbuf --- exe/main.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/exe/main.cc b/exe/main.cc index 2bcfc45c5..c3683a66d 100644 --- a/exe/main.cc +++ b/exe/main.cc @@ -3,6 +3,8 @@ #include #include +#include "google/protobuf/stubs/common.h" + #include "utl/progress_tracker.h" #include "motis/config.h" @@ -137,4 +139,6 @@ int main(int ac, char** av) { } return 0; } + + google::protobuf::ShutdownProtobufLibrary(); } \ No newline at end of file