From e9e643b240ac6a1c3c8ffd8c7045625b28b4df19 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Tue, 20 Sep 2016 17:24:52 +0200 Subject: [PATCH] leak-detective: Fix compile warning due to unused variable if LD is disabled --- src/libstrongswan/library.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstrongswan/library.c b/src/libstrongswan/library.c index f694509d1..4f79dcc5b 100644 --- a/src/libstrongswan/library.c +++ b/src/libstrongswan/library.c @@ -175,13 +175,13 @@ void library_deinit() this->public.integrity->destroy(this->public.integrity); } -#ifdef LEAK_DETECTIVE if (lib->leak_detective) { lib->leak_detective->report(lib->leak_detective, detailed); lib->leak_detective->destroy(lib->leak_detective); lib->leak_detective = NULL; } +#ifdef LEAK_DETECTIVE if (this->ld_out && this->ld_out != stderr) { fclose(this->ld_out);