From: simon Date: Fri, 26 Jan 2007 14:06:08 +0000 (+0000) Subject: Kai Jourdan spotted a rather embarrassing double-free, and Minefield X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/45d56852d8bd85126c66fb93fcc7a4c527a697b1 Kai Jourdan spotted a rather embarrassing double-free, and Minefield confirms that it's a real problem. git-svn-id: svn://svn.tartarus.org/sgt/putty@7168 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/windows/window.c b/windows/window.c index dca27a44..477e6333 100644 --- a/windows/window.c +++ b/windows/window.c @@ -816,9 +816,8 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show) sfree(handles); if (must_close_session) close_session(); - } - - sfree(handles); + } else + sfree(handles); while (PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) { if (msg.message == WM_QUIT)