Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2010-03-05 15:55:47 +0000
committerAndrew Niefer2010-03-05 15:55:47 +0000
commit86e5e6607451fc1a35228caa423a80b5d02d2c21 (patch)
tree07de8b7fca6676016b713864902fd9efcaf090c5 /bundles/org.eclipse.equinox.executable
parent6b6821baaa0a7499eab380741b862b33c6413ce0 (diff)
downloadrt.equinox.framework-86e5e6607451fc1a35228caa423a80b5d02d2c21.tar.gz
rt.equinox.framework-86e5e6607451fc1a35228caa423a80b5d02d2c21.tar.xz
rt.equinox.framework-86e5e6607451fc1a35228caa423a80b5d02d2c21.zip
bug 303335 - memory leak in launcherv20100307
Diffstat (limited to 'bundles/org.eclipse.equinox.executable')
-rw-r--r--bundles/org.eclipse.equinox.executable/library/win32/eclipseWin.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.executable/library/win32/eclipseWin.c b/bundles/org.eclipse.equinox.executable/library/win32/eclipseWin.c
index c849c93f1..11ec827e6 100644
--- a/bundles/org.eclipse.equinox.executable/library/win32/eclipseWin.c
+++ b/bundles/org.eclipse.equinox.executable/library/win32/eclipseWin.c
@@ -109,6 +109,7 @@ static void sendOpenFileMessage(HWND window) {
SendMessage(window, msg, wParam, lParam);
}
destroySharedData(id);
+ free(id);
}
static HWND findSWTMessageWindow() {

Back to the top