From c1a13c97daae5414a5dba12c49877d0a25a7fb02 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Thu, 9 Jan 2020 02:37:49 +0000 Subject: [PATCH] Unix Pageant: fix missing free at exit. It's totally harmless, except that if you test Pageant under Leak Sanitiser it makes an annoying error dump at the end of the run. --- unix/uxpgnt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/unix/uxpgnt.c b/unix/uxpgnt.c index 450f7b96..2431a29a 100644 --- a/unix/uxpgnt.c +++ b/unix/uxpgnt.c @@ -990,6 +990,7 @@ void run_agent(void) conf_free(conf); pollwrap_free(pw); + sfree(fdlist); } int main(int argc, char **argv)