# HG changeset patch # User Daniel Atallah # Date 1155261773 0 # Node ID 7f0e6b3f483238d65f45fb0c4451014a40bc4373 # Parent 7fbca36530560fe0731f9f5f515f9e53d4e69f68 [gaim-migrate @ 16697] 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). committer: Tailor Script diff -r 7fbca3653056 -r 7f0e6b3f4832 src/plugin.c --- a/src/plugin.c Fri Aug 11 01:30:22 2006 +0000 +++ b/src/plugin.c Fri Aug 11 02:02:53 2006 +0000 @@ -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);