Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rapicault2015-03-19 15:45:22 +0000
committerPascal Rapicault2015-03-19 15:45:22 +0000
commit93fc256c123f495571fa2d2ea68afa3c2b773ed4 (patch)
tree524983527a5f917be898aa233ab88053c5a72ad0 /features
parent7d8a3c243f370c655322607e3969a4c97df95ce9 (diff)
downloadrt.equinox.framework-93fc256c123f495571fa2d2ea68afa3c2b773ed4.tar.gz
rt.equinox.framework-93fc256c123f495571fa2d2ea68afa3c2b773ed4.tar.xz
rt.equinox.framework-93fc256c123f495571fa2d2ea68afa3c2b773ed4.zip
Fix crash on restart on Mac
Diffstat (limited to 'features')
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/eclipseConfig.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/eclipseConfig.c b/features/org.eclipse.equinox.executable.feature/library/eclipseConfig.c
index 2be4e6a78..4f99ef2ad 100644
--- a/features/org.eclipse.equinox.executable.feature/library/eclipseConfig.c
+++ b/features/org.eclipse.equinox.executable.feature/library/eclipseConfig.c
@@ -89,8 +89,6 @@ _TCHAR* getIniFile(_TCHAR* program, int consoleLauncher){
bname = basename(basec);
config_file = realloc(config_file, strlen(dname) + strlen(bname) + 16 * sizeof(char));
sprintf(config_file, "%s/Eclipse/%s.ini", dname, bname);
- free(dirc);
- free(basec);
free(dname);
free(bname);
#else

Back to the top