Fix a double free. (patch by Daniel Marjamaki, thanks).

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@5008 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Frank Lanitz 2010-06-07 17:43:47 +00:00
parent a94af233d9
commit 5f77252eef
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-06-07 Frank Lanitz <frank@frank.uvena.de>
* tagmanager/tm_project.c:
Fix a double free. (patch by Daniel Marjamaki, thanks).
2010-06-06 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* tagmanager/tm_workspace.c:

View File

@ -97,7 +97,6 @@ gboolean tm_project_init(TMProject *project, const char *dir
g_warning("Unable to init project file %s", path);
g_free(project->dir);
g_free(path);
g_free(path);
return FALSE;
}
if (! tm_workspace_add_object(TM_WORK_OBJECT(project)))