From f5c399f0d707bb30fb3d0581c0bc7b75ffe9f860 Mon Sep 17 00:00:00 2001 From: Christian Hohnstaedt Date: Thu, 24 Oct 2024 13:12:58 +0200 Subject: [PATCH] Free elements before exit of xcaexport app Not very tragic, but the ASAN build fails otherwise. --- lib/xcaexport.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/xcaexport.cpp b/lib/xcaexport.cpp index 9624bb66..b632da3a 100644 --- a/lib/xcaexport.cpp +++ b/lib/xcaexport.cpp @@ -55,5 +55,6 @@ int main(int argc, char *argv[]) QTextStream out(stdout); out << doc; } + pki_export::free_elements(); return EXIT_SUCCESS; }