SF.net SVN: geany: [1809] trunk
ntrel at users.sourceforge.net
ntrel at xxxxx
Fri Aug 17 11:48:30 UTC 2007
Revision: 1809
http://geany.svn.sourceforge.net/geany/?rev=1809&view=rev
Author: ntrel
Date: 2007-08-17 04:48:30 -0700 (Fri, 17 Aug 2007)
Log Message:
-----------
Apply patch from Jeff Pohlmeyer to fix warning when unloading plugins
that use signals when quitting (thanks).
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/plugins.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-08-16 17:19:16 UTC (rev 1808)
+++ trunk/ChangeLog 2007-08-17 11:48:30 UTC (rev 1809)
@@ -1,3 +1,10 @@
+2007-08-17 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
+
+ * src/plugins.c:
+ Apply patch from Jeff Pohlmeyer to fix warning when unloading plugins
+ that use signals when quitting (thanks).
+
+
2007-08-16 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* src/msgwindow.c:
Modified: trunk/src/plugins.c
===================================================================
--- trunk/src/plugins.c 2007-08-16 17:19:16 UTC (rev 1808)
+++ trunk/src/plugins.c 2007-08-17 11:48:30 UTC (rev 1809)
@@ -450,13 +450,13 @@
void plugins_free()
{
- g_object_unref(geany_object);
if (plugin_list != NULL)
{
g_list_foreach(plugin_list, (GFunc) plugin_free, NULL);
g_list_free(plugin_list);
}
+ g_object_unref(geany_object);
}
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