pidgin: 4f44b915: Fix a bug where the list of loaded plugi...

sadrul at pidgin.im sadrul at pidgin.im
Fri Apr 25 01:55:48 EDT 2008


-----------------------------------------------------------------
Revision: 4f44b915ab4b757df743c26147c1a5242ed033ec
Ancestor: 8823c1e2d1cf8e27e5be09b162ecaf6f8c463714
Author: sadrul at pidgin.im
Date: 2008-04-25T05:53:48
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/4f44b915ab4b757df743c26147c1a5242ed033ec

Modified files:
        ChangeLog libpurple/plugin.c

ChangeLog: 

Fix a bug where the list of loaded plugins would get removed when
switching between different operating systems. Thanks a bunch to
darthmarth37|LT and Vorondil for the help pin-pointing the bug.

-------------- next part --------------
============================================================
--- ChangeLog	a77c1a5fc94cee91265e0f6c0005a9159c853827
+++ ChangeLog	02bfbf0f139b51369c22e5b5b6b1beed8d6e6a38
@@ -5,7 +5,9 @@ version 2.x.x:
 	* In MySpaceIM, messages from spambots are discarded (Justin Williams)
 	* Strip mIRC formatting codes from quit and part messages.
 	* IRC now displays ban lists in-channel for joined channels.
-	
+	* Fixed a bug where the list of loaded plugins would get removed when
+	  switching between different operating systems.
+
 	Pidgin:
 	* The typing notification in the conversation history can be disabled or
 	  customized (font, color etc.) in .gtkrc-2.0.
============================================================
--- libpurple/plugin.c	779b3b2ebeaa720bf3205f39826e1464bd22c22a
+++ libpurple/plugin.c	ecb1ce693f792c9e98ce430fe9711ac8773afe94
@@ -1294,7 +1294,7 @@ purple_plugins_load_saved(const char *ke
 
 		/* Strip the extension */
 		if (basename)
-			basename = purple_plugin_get_basename(filename);
+			basename = purple_plugin_get_basename(basename);
 
 		if (((plugin = purple_plugins_find_with_filename(filename)) != NULL) ||
 				(basename && (plugin = purple_plugins_find_with_basename(basename)) != NULL) ||


More information about the Commits mailing list