Revision: 16697
Author: datallah
Date: 2006-08-10 19:02:53 -0700 (Thu, 10 Aug 2006)
ViewCVS: http://svn.sourceforge.net/gaim/?rev=16697&view=rev
Log Message:
-----------
CID 102 - This would probably take someone messing with prefs.xml manually to be encountered (I don't think there is any way to load plugins with relative paths, but I suppose with libgaim someone might try to do it).
Modified Paths:
--------------
trunk/src/plugin.c
Modified: trunk/src/plugin.c
===================================================================
--- trunk/src/plugin.c 2006-08-11 01:30:22 UTC (rev 16696)
+++ trunk/src/plugin.c 2006-08-11 02:02:53 UTC (rev 16697)
@@ -1232,7 +1232,7 @@
plugin->path);
gaim_plugin_load(plugin);
}
- else if ((plugin = gaim_plugins_find_with_basename(basename)) != NULL)
+ else if (basename && (plugin = gaim_plugins_find_with_basename(basename)) != NULL)
{
gaim_debug_info("plugins", "Loading saved plugin %s\n",
plugin->path);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|