Fixed small memory leak.

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@1003 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2006-11-15 18:21:46 +00:00
parent c8b497d1ca
commit c99b178e03
2 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* src/vte.c: Don't unload the VTE module on exit to avoid crashes on
some systems.
* src/main.c: Fixed small memory leak.
2006-11-15 Frank Lanitz <frank@frank.uvena.de>

View File

@ -701,6 +701,7 @@ void main_quit()
#ifdef HAVE_VTE
if (vte_info.have_vte) vte_close();
g_free(vte_info.lib_vte);
g_free(vte_info.dir);
#endif
gtk_widget_destroy(app->window);