fix segv in browse_item

SVN revision: 49288
This commit is contained in:
Hannes Janetzek 2010-05-29 11:17:15 +00:00
parent 4625a590c2
commit 9d978f7055
1 changed files with 1 additions and 1 deletions

View File

@ -1721,7 +1721,7 @@ evry_browse_item(Evry_Item *it)
{
if ((p->browse) && (pp = p->browse(p, it)))
{
if (!strcmp(pp->name, pref->name))
if (pref && !strcmp(pp->name, pref->name))
continue;
plugins = eina_list_append(plugins, pp);
}