From 45d56852d8bd85126c66fb93fcc7a4c527a697b1 Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 26 Jan 2007 14:06:08 +0000 Subject: [PATCH] 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 --- windows/window.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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) -- 2.11.0