1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-10 15:48:06 -05:00

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.
This commit is contained in:
Simon Tatham 2020-01-09 02:37:49 +00:00
parent f51d5f816f
commit c1a13c97da

View File

@ -990,6 +990,7 @@ void run_agent(void)
conf_free(conf);
pollwrap_free(pw);
sfree(fdlist);
}
int main(int argc, char **argv)