fixed warning if plugin list has trailing whitespaces

This commit is contained in:
Martin Willi
2008-05-16 13:48:58 +00:00
parent 3f730ec1cd
commit 0b0fba9e0d
@@ -105,6 +105,10 @@ static int load(private_plugin_loader_t *this, char *path, char *list)
{
pos++;
}
if (!*pos)
{
break;
}
}
plugin = load_plugin(this, path, list);
if (plugin)