SF.net SVN: geany: [1002] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Wed Nov 15 18:20:13 UTC 2006


Revision: 1002
          http://svn.sourceforge.net/geany/?rev=1002&view=rev
Author:   eht16
Date:     2006-11-15 10:20:13 -0800 (Wed, 15 Nov 2006)

Log Message:
-----------
Don't unload the VTE module on exit to avoid crashes on some systems.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/vte.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2006-11-15 17:43:21 UTC (rev 1001)
+++ trunk/ChangeLog	2006-11-15 18:20:13 UTC (rev 1002)
@@ -1,8 +1,14 @@
+2006-11-15  Enrico Tröger  <enrico.troeger at uvena.de>
+
+ * src/vte.c: Don't unload the VTE module on exit to avoid crashes on
+              some systems.
+
+
 2006-11-15  Frank Lanitz  <frank at frank.uvena.de>
 
- * src/about.c, configure.in, THANKS, po/zh_TW.po: 
-   Added tranditional Chinese translation (Thanks to KoViCH 
-   <kovich.ian at gmail.com>)
+ * src/about.c, configure.in, THANKS, po/zh_TW.po:
+   Added tranditional Chinese translation (Thanks to KoViCH
+   <kovich.ian at gmail.com>).
 
 
 2006-11-15  Nick Treleaven  <nick.treleaven at btinternet.com>
@@ -27,7 +33,7 @@
 
  * po/zh_CN.po, src/about.c, configure.in, THANKS:
    Added simple Chinese (zh_CN) translation (Thanks to
-   Dormouse Young <mouselinux at 163.com>)
+   Dormouse Young <mouselinux at 163.com>).
 
 
 2006-11-14  Nick Treleaven  <nick.treleaven at btinternet.com>

Modified: trunk/src/vte.c
===================================================================
--- trunk/src/vte.c	2006-11-15 17:43:21 UTC (rev 1001)
+++ trunk/src/vte.c	2006-11-15 18:20:13 UTC (rev 1002)
@@ -189,7 +189,8 @@
 	g_free(vc->colour_fore);
 	g_free(vc);
 	g_free(gtk_menu_key_accel);
-	g_module_close(module);
+	// don't unload the module explicitly because it causes a segfault on FreeBSD
+	//g_module_close(module);
 }
 
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list